﻿aroai_day_of_ongoing_iteration = {
    value = 29
    subtract = var:aroai_date_of_next_iteration
    add = game_date
}

aroai_days_since_agriculture_resources_were_checked = {
    value = game_date
    subtract = global_var:aroai_date_of_last_check_of_agriculture_resources
}

aroai_days_since_stalemate_wars_were_tracked = {
    value = game_date
    subtract = global_var:aroai_date_of_last_tracking_of_stalemate_wars
}

aroai_days_since_construction_modifiers_were_applied = {
    value = game_date
    subtract = global_var:aroai_date_of_last_applying_of_construction_modifiers
}

aroai_max_iterations_since_production_downsizing = 5

# TODO get it from countries with no construction sectors yearly or monthly instead
aroai_base_construction_points = 5

aroai_construction_points_per_building = {
    value = define:NEconomy|MAX_WEEKLY_CONSTRUCTION_PROGRESS
    divide = {
        if = {
            limit = {
                has_variable = aroai_median_construction_efficiency
            }
            value = var:aroai_median_construction_efficiency
            divide = 10
        }
        else = {
            value = 1
            # add = modifier:state_construction_mult
            add = {
                value = {
                    every_scope_state = {
                        add = modifier:state_construction_mult
                    }
                }
                divide = {
                    every_scope_state = {
                        add = 1
                    }
                }
            }
            min = define:NEconomy|MIN_CONSTRUCTION_EFFICIENCY
        }
        min = 0.01
    }
    min = 0.5
    max = define:NEconomy|MAX_WEEKLY_CONSTRUCTION_ALLOCATION
}

aroai_construction_points_current = {
    value = modifier:country_construction_add
    # Is not in the game yet
    # multiply = {
    #     value = modifier:country_construction_mult
    #     add = 1
    # }
    min = aroai_base_construction_points
}

aroai_construction_points_from_sectors_current = {
    value = aroai_construction_points_current
    subtract = aroai_base_construction_points
    min = 0
}

aroai_constructions_possible_with_current_points = {
    value = aroai_construction_points_current
    divide = aroai_construction_points_per_building
}

aroai_usage_of_construction_points_value = {
    value = aroai_construction_queue_num_queued_levels
    multiply = aroai_construction_points_per_building
}

aroai_usage_of_construction_points_percent = {
    value = aroai_usage_of_construction_points_value
    divide = aroai_construction_points_current
    min = 0.00
    max = 1.00
}

aroai_expenses_for_one_construction = {
    value = aroai_construction_points_per_building
    multiply = aroai_building_construction_sector_expenses_per_point
}

aroai_construction_queue_num_queued_levels = {
    value = construction_queue_num_queued_levels
    if = {
        limit = {
            construction_queue_num_queued_private_levels > 0
        }
        subtract = construction_queue_num_queued_private_levels
        add = aroai_construction_queue_num_queued_private_levels
    }
}

aroai_construction_queue_num_queued_private_levels = {
    value = construction_queue_num_queued_private_levels
    max = {
        value = aroai_investment_pool_potential

        # Investment pool only cover goods, wages are paid from government money
        divide = {
            value = aroai_expenses_for_one_construction
            multiply = aroai_building_construction_sector_share_of_goods_in_expenses
            min = 1
        }
        round = yes
    }
}

aroai_usage_of_construction_points_by_private_queue_percent = {
    if = {
        limit = {
            aroai_construction_queue_num_queued_levels <= 0
        }
        value = 0
    }
    else = {
        value = aroai_construction_queue_num_queued_private_levels
        divide = aroai_constructions_possible_with_current_points
    }
}

aroai_building_construction_sector_expenses_per_point = {
    if = {
        limit = {
            has_variable = aroai_building_construction_sector_expenses_per_point
            var:aroai_building_construction_sector_expenses_per_point > 0
        }
        value = var:aroai_building_construction_sector_expenses_per_point
        floor = yes
        divide = {
            value = var:aroai_building_construction_sector_expenses_per_point
            subtract = {
                value = var:aroai_building_construction_sector_expenses_per_point
                floor = yes 
            }
            multiply = 100
        }
    }
    else = {
        value = 0
    }
}

aroai_building_construction_sector_share_of_wages_in_expenses = 0.10

aroai_building_construction_sector_share_of_goods_in_expenses = {
    value = 1
    subtract = aroai_building_construction_sector_share_of_wages_in_expenses
    min = 0
    max = 1
}

aroai_max_percent_of_autonomous_construction_points = 0.90

aroai_free_construction_points = {
    
    # Base value is how much construction country does have
    value = aroai_construction_points_current
    
    # If you are not deep in debt then add standard building limit over it to build a bit more and thus reduce downtime
    if = {
        limit = {
            OR = {
                is_player = yes
                aroai_has_no_construction_sectors = yes
                trigger_if = {
                    limit = {
                        aroai_are_military_expenses_higher_than_usual = yes
                    }
                    scaled_debt <= 0.15
                }
                trigger_else = {
                    scaled_debt <= 0.30
                }
            }
        }
        add = {
            if = {
                limit = {
                    aroai_day_of_ongoing_iteration = 1
                }
                if = {
                    limit = {
                        has_wasted_construction = yes
                    }
                    value = aroai_construction_limit_5_11
                    multiply = aroai_construction_points_per_building
                }
                else = {
                    value = aroai_construction_points_current
                    multiply = 1.333
                    max = {
                        value = aroai_construction_limit_5_11
                        multiply = aroai_construction_points_per_building
                    }
                }
            }
            else = {
                if = {
                    limit = {
                        has_wasted_construction = yes
                    }
                    value = aroai_construction_limit_5_6
                    multiply = aroai_construction_points_per_building
                }
                else = {
                    value = aroai_construction_points_current
                    multiply = 1.33
                    max = {
                        value = aroai_construction_limit_5_6
                        multiply = aroai_construction_points_per_building
                    }
                }
            }
            if = {
                limit = {
                    aroai_usage_of_construction_points_by_private_queue_percent > 0
                }
                multiply = {
                    value = 1
                    subtract = {
                        value = aroai_usage_of_construction_points_by_private_queue_percent
                        divide = 0.50
                        min = 0
                        max = 1
                    }
                }
            }
        }
    }
    
    # If you are deep in debt then instead only part of queue potential is used to reduce construction costs
    else = {
        multiply = {
            if = { # from 0.15 (max) to 0.30 (min)
                limit = {
                    aroai_are_military_expenses_higher_than_usual = yes
                }
                value = 0.30
                subtract = scaled_debt
                divide = 0.15
            }
            else = { # from 0.30 (max) to 0.45 (min)
                value = 0.45
                subtract = scaled_debt
                divide = 0.15
            }
            min = 0
            max = 1
        }
    }
    
    # Subtract construction points that are already used for buildings in the queue
    subtract = aroai_usage_of_construction_points_value
}


aroai_millions_of_incorporated_population = {
    value = var:aroai_incorporated_population
    divide = 1000000
}

aroai_millions_of_minus_half_unincorporated_population = {
    value = aroai_minus_half_unincorporated_population
    divide = 1000000
}

aroai_millions_of_gdp = {
    value = gdp
    divide = 1000000
}

aroai_half_total_population = {
    value = total_population
    divide = 2
}

aroai_unincorporated_population = {
    value = total_population
    subtract = var:aroai_incorporated_population
}

aroai_unincorporated_coastal_population = {
    value = var:aroai_total_coastal_population
    subtract = var:aroai_incorporated_coastal_population
}

aroai_half_unincorporated_coastal_population = {
    value = aroai_unincorporated_coastal_population
    divide = 2
}

aroai_minus_half_unincorporated_population = {
    value = total_population
    subtract = {
        value = aroai_unincorporated_population
        divide = 2
        min = 0
    }
}

aroai_minus_half_unincorporated_coastal_population = {
    value = var:aroai_total_coastal_population
    subtract = aroai_half_unincorporated_coastal_population
}

aroai_minus_half_unincorporated_gdp = {
    value = gdp
    subtract = {
        value = gdp
        subtract = var:aroai_incorporated_gdp
        divide = 2
        min = 0
    }
}

aroai_gdp_per_capita = {
    value = gdp
    divide = {
        value = total_population
        min = 1
    }
}

aroai_incorporated_gdp_per_capita = {
    value = var:aroai_incorporated_gdp
    divide = {
        value = var:aroai_incorporated_population
        min = 1
    }
}

aroai_minus_half_unincorporated_gdp_per_capita = {
    value = aroai_minus_half_unincorporated_gdp
    divide = {
        value = aroai_minus_half_unincorporated_population
        min = 1
    }
}

aroai_unemployed_population = {
    value = state_population
    multiply = {
        value = state_unemployment_rate
        min = 0
        max = 1
    }
}

aroai_sufficient_occupancy = {
    value = level
    subtract = {
        value = 1
        add = {
            value = 0.1
            multiply = level
        }
    }
    divide = level
    min = 0.4
}

aroai_occupied_levels = {
    value = level
    multiply = {
        value = occupancy
        min = 0
        max = 1
    }
}

aroai_available_workforce = {
    if = {
        limit = {
            has_variable = aroai_available_workforce
        }
        value = var:aroai_available_workforce
    }
    else = {
        value = aroai_unemployed_population
    }
    subtract = {
        value = 0
        every_in_list = {
            variable = aroai_ongoing_constructions
            add = aroai_current_ongoing_constructions_element_4
        }
        multiply = 5000
    }
}

aroai_required_workforce = {
    value = 5000
}

aroai_sufficient_workforce = {
    value = 20000
}

aroai_army_power_projection = {
    value = modifier:country_army_power_projection_add
    multiply = {
        value = modifier:country_army_power_projection_mult
        add = 1
    }
}

aroai_power_per_battalion = {
    if = {
        limit = {
            has_variable = aroai_building_barracks_total
            var:aroai_building_barracks_total > 0
            aroai_army_power_projection > 0
        }
        value = aroai_army_power_projection
        divide = var:aroai_building_barracks_total
    }
    else = {
        value = 1
    }
}

aroai_conscription_power_projection = {
    if = {
        limit = {
            has_variable = aroai_building_conscription_center_total
            var:aroai_building_conscription_center_total > 0
        }
        value = var:aroai_building_conscription_center_total
        multiply = aroai_power_per_battalion
        multiply = define:NAI|CONSCRIPTION_ESTIMATED_MILITARY_POWER_MULT
    }
    else = {
        value = 0
    }
}

aroai_army_power_projection_with_conscription = {
    value = aroai_army_power_projection
    add = aroai_conscription_power_projection
}

aroai_navy_power_projection = {
    value = modifier:country_navy_power_projection_add
    multiply = {
        value = modifier:country_navy_power_projection_mult
        add = 1
    }
}

aroai_power_per_flotilla = {
    if = {
        limit = {
            navy_size > 0
            aroai_navy_power_projection > 0
        }
        value = aroai_navy_power_projection
        divide = navy_size
    }
    else = {
        value = 1
    }
}

aroai_institution_bureaucracy_cost = {
    value = var:aroai_incorporated_population
    divide = 100000
}

aroai_infrastructure_balance_value = {
    value = infrastructure
    subtract = infrastructure_usage
}

aroai_infrastructure_balance_percent = {
    value = infrastructure
    divide = {
        value = infrastructure_usage
        min = 1
    }
}

aroai_infrastructure_with_ongoing_constructions = {
    value = infrastructure
    if = {
        limit = {
            any_scope_building = {
                is_building_type = building_railway
                is_under_construction = yes
            }
        }
        add = {
            if = {
                limit = {
                    any_scope_building = {
                        is_building_type = building_railway
                        level > 0
                    }
                }
                every_scope_building = {
                    limit = {
                        is_building_type = building_railway
                    }
                    value = aroai_infrastructure_per_level_of_railway
                }
                divide = {
                    value = 0
                    every_scope_building = {
                        limit = {
                            is_building_type = building_railway
                        }
                        add = 1
                    }
                    min = 1
                }
            }
            else = {
                if = {
                    limit = {
                        root = {
                            has_variable = aroai_building_type_4_collected_data
                            aroai_building_type_4_collected_data_4 > 0
                        }
                    }
                    value = 5
                    multiply = root.aroai_building_type_4_collected_data_4
                    add = 10
                }
                else = {
                    value = 20
                }
            }
            multiply = {
                if = {
                    limit = {
                        aroai_has_variable_list = {
                            name = aroai_ongoing_constructions
                        }
                    }
                    value = 0
                    every_in_list = {
                        variable = aroai_ongoing_constructions
                        limit = {
                            aroai_current_ongoing_constructions_element_1 = 4
                            aroai_current_ongoing_constructions_element_3 < 3
                        }
                        add = aroai_current_ongoing_constructions_element_4
                    }
                }
                else = {
                    value = 1
                }
            }
        }
    }
}

aroai_infrastructure_per_level_of_railway = {
    value = 0
    if = {
        limit = {
            has_active_production_method = pm_diesel_trains
        }
        add = 40
    }
    else_if = {
        limit = {
            has_active_production_method = pm_electric_trains
        }
        add = 30
    }
    else = {
        add = 20
    }
    if = {
        limit = {
            NOT = {
                has_active_production_method = pm_no_passenger_trains
            }
        }
        subtract = 5
    }
}

aroai_infrastructure_balance_value_with_ongoing_constructions = {
    value = aroai_infrastructure_with_ongoing_constructions
    subtract = infrastructure_usage
}

aroai_infrastructure_balance_percent_with_ongoing_constructions = {
    value = aroai_infrastructure_with_ongoing_constructions
    divide = {
        value = infrastructure_usage
        min = 1
    }
}

aroai_tax_capacity_balance_value = {
    value = tax_capacity
    subtract = tax_capacity_usage
}

aroai_tax_capacity_balance_percent = {
    value = tax_capacity
    divide = {
        value = tax_capacity_usage
        min = 1
    }
}

aroai_taxes_lost_due_to_tax_capacity = {
    value = gdp
    multiply = {
        value = 1
        subtract = aroai_tax_capacity_balance_percent
        min = 0
        max = 1
    }
}

aroai_country_lost_taxes = {
    value = {
        every_scope_state = {
            add = aroai_taxes_lost_due_to_tax_capacity
        }
    }
    divide = {
        value = gdp
        min = 1
    }
}

aroai_tax_capacity_from_government_administration = {
    if = {
        limit = {
            has_active_production_method = pm_switch_boards
        }
        value = 30
    }
    else_if = {
        limit = {
            has_active_production_method = pm_vertical_filing_cabinets
        }
        value = 15
    }
    else_if = {
        limit = {
            has_active_production_method = pm_horizontal_drawer_cabinets
        }
        value = 10
    }
    else = {
        value = 5
    }
    multiply = level
    multiply = occupancy
}

aroai_building_government_administration_downsizing_threshold = {
    value = root.var:aroai_building_government_administration_total
    multiply = 0.35
}

aroai_building_construction_sector_downsizing_threshold = {
    value = root.var:aroai_building_construction_sector_total
    multiply = 0.50
}

aroai_building_university_downsizing_threshold = {
    value = root.var:aroai_building_university_total
    multiply = 0.50
}

aroai_building_port_downsizing_threshold = {
    value = root.var:aroai_building_port_total
    multiply = 0.50
}

aroai_building_barracks_downsizing_threshold = {
    value = root.var:aroai_building_barracks_total
    multiply = 0.50
}

aroai_building_naval_base_downsizing_threshold = {
    value = root.var:aroai_building_naval_base_total
    multiply = 0.50
}

aroai_median_building_profitability = {
    if = {
        limit = {
            root = {
                has_variable = aroai_median_building_profitability
            }
        }
        value = root.var:aroai_median_building_profitability
    }
    else = {
        value = 0
    }
}

aroai_10_percent_of_average_profit = {
    value = aroai_median_building_profitability
    multiply = 0.10
}

aroai_20_percent_of_average_profit = {
    value = aroai_median_building_profitability
    multiply = 0.20
}

aroai_productivity_without_scaling = {
    value = earnings
    divide = {
        value = 1
        add = {
            value = level
            subtract = define:NEconomy|ECONOMY_OF_SCALE_START_LEVEL
            add = 1
            max = root.modifier:building_economy_of_scale_level_cap_add
            divide = 100
        }
    }
}

aroai_productivity_without_half_economy_of_scale = {
    value = earnings
    divide = {
        value = 1
        add = {
            value = level
            subtract = define:NEconomy|ECONOMY_OF_SCALE_START_LEVEL
            add = 1
            max = root.modifier:building_economy_of_scale_level_cap_add
            divide = 100
            
            divide = 2
        }
    }
}

aroai_median_building_productivity = {
    if = {
        limit = {
            root = {
                has_variable = aroai_median_building_productivity
            }
        }
        value = root.var:aroai_median_building_productivity
    }
    else = {
        value = 0
    }
}

aroai_75_percent_of_average_productivity = {
    value = aroai_median_building_productivity
    multiply = 0.75
}

aroai_profit_per_occupied_level = {
    if = {
        limit = {
            aroai_occupied_levels > 0
        }
        value = weekly_profit
        divide = aroai_occupied_levels
    }
    else = {
        value = 0
    }
}

aroai_productivity_formatted = {
    value = earnings
    multiply = 10
}

aroai_current_priority = {
    value = local_var:aroai_current_priority
}

aroai_evaluated_priority_level = {
    value = local_var:aroai_evaluated_priority_level
}

aroai_current_aroai_building_type_occupied_levels = {
    value = scope:aroai_current_state.var:aroai_building_type_occupied_levels
}
aroai_current_government_administration_level = {
    value = scope:aroai_current_state.var:aroai_building_government_administration_level
}

aroai_current_university_level = {
    value = scope:aroai_current_state.var:aroai_building_university_level
}

aroai_current_construction_sector_level = {
    value = scope:aroai_current_state.var:aroai_building_construction_sector_level
}

aroai_current_port_level = {
    value = scope:aroai_current_state.var:aroai_building_port_level
}

aroai_current_barracks_level = {
    value = scope:aroai_current_state.var:aroai_building_barracks_level
}

aroai_current_naval_base_level = {
    value = scope:aroai_current_state.var:aroai_building_naval_base_level
}

aroai_building_university_total = {
    value = var:aroai_building_university_total
}

aroai_building_government_administration_spending = {
    value = var:aroai_building_government_administration_spending
}
aroai_building_university_spending = {
    value = var:aroai_building_university_spending
}
aroai_building_port_spending = {
    value = var:aroai_building_port_spending
}
aroai_building_barracks_spending = {
    value = var:aroai_building_barracks_spending
}
aroai_building_naval_base_spending = {
    value = var:aroai_building_naval_base_spending
}

aroai_state_construction_sector_limit = {
    value = modifier:state_building_construction_sector_max_level_add
}
aroai_state_port_limit = {
    value = modifier:state_building_port_max_level_add
}
aroai_state_barracks_limit = {
    value = modifier:state_building_barracks_max_level_add
}
aroai_state_naval_base_limit = {
    value = modifier:state_building_naval_base_max_level_add
}

aroai_order_of_current_element = {
    value = this
    subtract = {
        value = this
        floor = yes
    }
    multiply = 100
    floor = yes
}

aroai_buildings_with_highest_priority_id = {
    value = this
    floor = yes
}

aroai_average_between_level_and_productivity = {
    value = local_var:aroai_saved_supply_vs_demand_level
    add = local_var:aroai_saved_productivity_requirement_level
    divide = 2
    floor = yes
}

aroai_half_of_average_between_level_and_productivity = {
    value = local_var:aroai_saved_supply_vs_demand_level
    add = local_var:aroai_saved_productivity_requirement_level
    divide = 4
    ceiling = yes
}

aroai_available_agriculture_resources_1 = {
    value = state_region.var:aroai_available_agriculture_resources
    divide = 100000
    floor = yes
    multiply = 100000
}

aroai_available_agriculture_resources_2 = {
    value = state_region.var:aroai_available_agriculture_resources
    subtract = {
        value = state_region.var:aroai_available_agriculture_resources
        divide = 100000
        floor = yes
        multiply = 100000
    }
    divide = 10000
    floor = yes
    multiply = 10000
}

aroai_available_agriculture_resources_3 = {
    value = state_region.var:aroai_available_agriculture_resources
    subtract = {
        value = state_region.var:aroai_available_agriculture_resources
        divide = 10000
        floor = yes
        multiply = 10000
    }
    divide = 1000
    floor = yes
    multiply = 1000
}

aroai_available_agriculture_resources_4 = {
    value = state_region.var:aroai_available_agriculture_resources
    subtract = {
        value = state_region.var:aroai_available_agriculture_resources
        divide = 1000
        floor = yes
        multiply = 1000
    }
    divide = 100
    floor = yes
    multiply = 100
}

aroai_available_agriculture_resources_5 = {
    value = state_region.var:aroai_available_agriculture_resources
    subtract = {
        value = state_region.var:aroai_available_agriculture_resources
        divide = 100
        floor = yes
        multiply = 100
    }
    divide = 10
    floor = yes
    multiply = 10
}

aroai_available_agriculture_resources_6 = {
    value = state_region.var:aroai_available_agriculture_resources
    subtract = {
        value = state_region.var:aroai_available_agriculture_resources
        divide = 10
        floor = yes
        multiply = 10
    }
}

aroai_building_data_overflow_protection = {
    value = 10000
    subtract = {
        value = prev.aroai_occupied_levels
        round = yes
    }
}

# Cell distribution of aroai_building_type_X_collected_data array variable
#
# During shortage data collection
# dddcbbbbaa.aa
# aaaa | multiply = 100    | ? | levels of building type with shortage
# bbbb | divide = 100      | 3 | total levels of building type
# c    | divide = 1000000  | 4 | usage of production methods, see aroai_check_production_methods_of_building_type
# ddd  | divide = 10000000 | 5 | counter of ongoing constructions (max 213)
# Note that aaaa cell doesn't align with how cells are distributed in other stages, so you can't get it with value
#
# After data collection is completed
# eeedccccbb.aa
# aa   | multiply = 100    | 1 | percent of buildings without shortage
# bb   | no modification   | 2 | median profitability of building type compared to average in percent
# cccc | divide = 100      | 3 | median productivity of building type with economy of scale removed (x10, 23.6 = 236)
# d    | divide = 1000000  | 4 | usage of production methods, see aroai_check_production_methods_of_building_type
# eee  | divide = 10000000 | 5 | counter of ongoing constructions (max 213)
# Note that data in cells 1 and 2 is capped to 99%, but it's not a problem due to how these cells are used
#
# After building type priority is evaluated
# eeedccccbb.aa
# aa   | multiply = 100    | 1 | priority of building type
# bb   | no modification   | 2 | supply vs demand level used for priority
# cccc | divide = 100      | 3 | productivity that a building of this type must have to get expanded (x10, 23.6 = 236)
# d    | divide = 1000000  | 4 | is construction of new buildings of this type allowed (0 = false, 1 = true)
# eee  | divide = 10000000 | 5 | counter of ongoing constructions (max 213)
# Note that 1 and 2 are capped to 99%, but it's not a problem due to how these cells are used

aroai_building_type_1_collected_data_1 = { value = var:aroai_building_type_1_collected_data
subtract = { value = var:aroai_building_type_1_collected_data floor = yes } multiply = 100 }
aroai_building_type_1_collected_data_2 = { value = var:aroai_building_type_1_collected_data
subtract = { value = var:aroai_building_type_1_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_1_collected_data_3 = { value = var:aroai_building_type_1_collected_data
subtract = { value = var:aroai_building_type_1_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_1_collected_data_4 = { value = var:aroai_building_type_1_collected_data
subtract = { value = var:aroai_building_type_1_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_1_collected_data_5 = { value = var:aroai_building_type_1_collected_data
divide = 10000000 floor = yes }
aroai_building_type_1_collected_data_average_of_1_and_2 = { value = aroai_building_type_1_collected_data_1
add = aroai_building_type_1_collected_data_2 divide = 2 floor = yes }
aroai_building_type_2_collected_data_1 = { value = var:aroai_building_type_2_collected_data
subtract = { value = var:aroai_building_type_2_collected_data floor = yes } multiply = 100 }
aroai_building_type_2_collected_data_2 = { value = var:aroai_building_type_2_collected_data
subtract = { value = var:aroai_building_type_2_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_2_collected_data_3 = { value = var:aroai_building_type_2_collected_data
subtract = { value = var:aroai_building_type_2_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_2_collected_data_4 = { value = var:aroai_building_type_2_collected_data
subtract = { value = var:aroai_building_type_2_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_2_collected_data_5 = { value = var:aroai_building_type_2_collected_data
divide = 10000000 floor = yes }
aroai_building_type_2_collected_data_average_of_1_and_2 = { value = aroai_building_type_2_collected_data_1
add = aroai_building_type_2_collected_data_2 divide = 2 floor = yes }
aroai_building_type_3_collected_data_1 = { value = var:aroai_building_type_3_collected_data
subtract = { value = var:aroai_building_type_3_collected_data floor = yes } multiply = 100 }
aroai_building_type_3_collected_data_2 = { value = var:aroai_building_type_3_collected_data
subtract = { value = var:aroai_building_type_3_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_3_collected_data_3 = { value = var:aroai_building_type_3_collected_data
subtract = { value = var:aroai_building_type_3_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_3_collected_data_4 = { value = var:aroai_building_type_3_collected_data
subtract = { value = var:aroai_building_type_3_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_3_collected_data_5 = { value = var:aroai_building_type_3_collected_data
divide = 10000000 floor = yes }
aroai_building_type_3_collected_data_average_of_1_and_2 = { value = aroai_building_type_3_collected_data_1
add = aroai_building_type_3_collected_data_2 divide = 2 floor = yes }
aroai_building_type_4_collected_data_1 = { value = var:aroai_building_type_4_collected_data
subtract = { value = var:aroai_building_type_4_collected_data floor = yes } multiply = 100 }
aroai_building_type_4_collected_data_2 = { value = var:aroai_building_type_4_collected_data
subtract = { value = var:aroai_building_type_4_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_4_collected_data_3 = { value = var:aroai_building_type_4_collected_data
subtract = { value = var:aroai_building_type_4_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_4_collected_data_4 = { value = var:aroai_building_type_4_collected_data
subtract = { value = var:aroai_building_type_4_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_4_collected_data_5 = { value = var:aroai_building_type_4_collected_data
divide = 10000000 floor = yes }
aroai_building_type_4_collected_data_average_of_1_and_2 = { value = aroai_building_type_4_collected_data_1
add = aroai_building_type_4_collected_data_2 divide = 2 floor = yes }
aroai_building_type_5_collected_data_1 = { value = var:aroai_building_type_5_collected_data
subtract = { value = var:aroai_building_type_5_collected_data floor = yes } multiply = 100 }
aroai_building_type_5_collected_data_2 = { value = var:aroai_building_type_5_collected_data
subtract = { value = var:aroai_building_type_5_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_5_collected_data_3 = { value = var:aroai_building_type_5_collected_data
subtract = { value = var:aroai_building_type_5_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_5_collected_data_4 = { value = var:aroai_building_type_5_collected_data
subtract = { value = var:aroai_building_type_5_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_5_collected_data_5 = { value = var:aroai_building_type_5_collected_data
divide = 10000000 floor = yes }
aroai_building_type_5_collected_data_average_of_1_and_2 = { value = aroai_building_type_5_collected_data_1
add = aroai_building_type_5_collected_data_2 divide = 2 floor = yes }
aroai_building_type_6_collected_data_1 = { value = var:aroai_building_type_6_collected_data
subtract = { value = var:aroai_building_type_6_collected_data floor = yes } multiply = 100 }
aroai_building_type_6_collected_data_2 = { value = var:aroai_building_type_6_collected_data
subtract = { value = var:aroai_building_type_6_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_6_collected_data_3 = { value = var:aroai_building_type_6_collected_data
subtract = { value = var:aroai_building_type_6_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_6_collected_data_4 = { value = var:aroai_building_type_6_collected_data
subtract = { value = var:aroai_building_type_6_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_6_collected_data_5 = { value = var:aroai_building_type_6_collected_data
divide = 10000000 floor = yes }
aroai_building_type_6_collected_data_average_of_1_and_2 = { value = aroai_building_type_6_collected_data_1
add = aroai_building_type_6_collected_data_2 divide = 2 floor = yes }
aroai_building_type_7_collected_data_1 = { value = var:aroai_building_type_7_collected_data
subtract = { value = var:aroai_building_type_7_collected_data floor = yes } multiply = 100 }
aroai_building_type_7_collected_data_2 = { value = var:aroai_building_type_7_collected_data
subtract = { value = var:aroai_building_type_7_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_7_collected_data_3 = { value = var:aroai_building_type_7_collected_data
subtract = { value = var:aroai_building_type_7_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_7_collected_data_4 = { value = var:aroai_building_type_7_collected_data
subtract = { value = var:aroai_building_type_7_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_7_collected_data_5 = { value = var:aroai_building_type_7_collected_data
divide = 10000000 floor = yes }
aroai_building_type_7_collected_data_average_of_1_and_2 = { value = aroai_building_type_7_collected_data_1
add = aroai_building_type_7_collected_data_2 divide = 2 floor = yes }
aroai_building_type_8_collected_data_1 = { value = var:aroai_building_type_8_collected_data
subtract = { value = var:aroai_building_type_8_collected_data floor = yes } multiply = 100 }
aroai_building_type_8_collected_data_2 = { value = var:aroai_building_type_8_collected_data
subtract = { value = var:aroai_building_type_8_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_8_collected_data_3 = { value = var:aroai_building_type_8_collected_data
subtract = { value = var:aroai_building_type_8_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_8_collected_data_4 = { value = var:aroai_building_type_8_collected_data
subtract = { value = var:aroai_building_type_8_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_8_collected_data_5 = { value = var:aroai_building_type_8_collected_data
divide = 10000000 floor = yes }
aroai_building_type_8_collected_data_average_of_1_and_2 = { value = aroai_building_type_8_collected_data_1
add = aroai_building_type_8_collected_data_2 divide = 2 floor = yes }
aroai_building_type_9_collected_data_1 = { value = var:aroai_building_type_9_collected_data
subtract = { value = var:aroai_building_type_9_collected_data floor = yes } multiply = 100 }
aroai_building_type_9_collected_data_2 = { value = var:aroai_building_type_9_collected_data
subtract = { value = var:aroai_building_type_9_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_9_collected_data_3 = { value = var:aroai_building_type_9_collected_data
subtract = { value = var:aroai_building_type_9_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_9_collected_data_4 = { value = var:aroai_building_type_9_collected_data
subtract = { value = var:aroai_building_type_9_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_9_collected_data_5 = { value = var:aroai_building_type_9_collected_data
divide = 10000000 floor = yes }
aroai_building_type_9_collected_data_average_of_1_and_2 = { value = aroai_building_type_9_collected_data_1
add = aroai_building_type_9_collected_data_2 divide = 2 floor = yes }
aroai_building_type_10_collected_data_1 = { value = var:aroai_building_type_10_collected_data
subtract = { value = var:aroai_building_type_10_collected_data floor = yes } multiply = 100 }
aroai_building_type_10_collected_data_2 = { value = var:aroai_building_type_10_collected_data
subtract = { value = var:aroai_building_type_10_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_10_collected_data_3 = { value = var:aroai_building_type_10_collected_data
subtract = { value = var:aroai_building_type_10_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_10_collected_data_4 = { value = var:aroai_building_type_10_collected_data
subtract = { value = var:aroai_building_type_10_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_10_collected_data_5 = { value = var:aroai_building_type_10_collected_data
divide = 10000000 floor = yes }
aroai_building_type_10_collected_data_average_of_1_and_2 = { value = aroai_building_type_10_collected_data_1
add = aroai_building_type_10_collected_data_2 divide = 2 floor = yes }
aroai_building_type_11_collected_data_1 = { value = var:aroai_building_type_11_collected_data
subtract = { value = var:aroai_building_type_11_collected_data floor = yes } multiply = 100 }
aroai_building_type_11_collected_data_2 = { value = var:aroai_building_type_11_collected_data
subtract = { value = var:aroai_building_type_11_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_11_collected_data_3 = { value = var:aroai_building_type_11_collected_data
subtract = { value = var:aroai_building_type_11_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_11_collected_data_4 = { value = var:aroai_building_type_11_collected_data
subtract = { value = var:aroai_building_type_11_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_11_collected_data_5 = { value = var:aroai_building_type_11_collected_data
divide = 10000000 floor = yes }
aroai_building_type_11_collected_data_average_of_1_and_2 = { value = aroai_building_type_11_collected_data_1
add = aroai_building_type_11_collected_data_2 divide = 2 floor = yes }
aroai_building_type_12_collected_data_1 = { value = var:aroai_building_type_12_collected_data
subtract = { value = var:aroai_building_type_12_collected_data floor = yes } multiply = 100 }
aroai_building_type_12_collected_data_2 = { value = var:aroai_building_type_12_collected_data
subtract = { value = var:aroai_building_type_12_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_12_collected_data_3 = { value = var:aroai_building_type_12_collected_data
subtract = { value = var:aroai_building_type_12_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_12_collected_data_4 = { value = var:aroai_building_type_12_collected_data
subtract = { value = var:aroai_building_type_12_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_12_collected_data_5 = { value = var:aroai_building_type_12_collected_data
divide = 10000000 floor = yes }
aroai_building_type_12_collected_data_average_of_1_and_2 = { value = aroai_building_type_12_collected_data_1
add = aroai_building_type_12_collected_data_2 divide = 2 floor = yes }
aroai_building_type_13_collected_data_1 = { value = var:aroai_building_type_13_collected_data
subtract = { value = var:aroai_building_type_13_collected_data floor = yes } multiply = 100 }
aroai_building_type_13_collected_data_2 = { value = var:aroai_building_type_13_collected_data
subtract = { value = var:aroai_building_type_13_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_13_collected_data_3 = { value = var:aroai_building_type_13_collected_data
subtract = { value = var:aroai_building_type_13_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_13_collected_data_4 = { value = var:aroai_building_type_13_collected_data
subtract = { value = var:aroai_building_type_13_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_13_collected_data_5 = { value = var:aroai_building_type_13_collected_data
divide = 10000000 floor = yes }
aroai_building_type_13_collected_data_average_of_1_and_2 = { value = aroai_building_type_13_collected_data_1
add = aroai_building_type_13_collected_data_2 divide = 2 floor = yes }
aroai_building_type_14_collected_data_1 = { value = var:aroai_building_type_14_collected_data
subtract = { value = var:aroai_building_type_14_collected_data floor = yes } multiply = 100 }
aroai_building_type_14_collected_data_2 = { value = var:aroai_building_type_14_collected_data
subtract = { value = var:aroai_building_type_14_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_14_collected_data_3 = { value = var:aroai_building_type_14_collected_data
subtract = { value = var:aroai_building_type_14_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_14_collected_data_4 = { value = var:aroai_building_type_14_collected_data
subtract = { value = var:aroai_building_type_14_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_14_collected_data_5 = { value = var:aroai_building_type_14_collected_data
divide = 10000000 floor = yes }
aroai_building_type_14_collected_data_average_of_1_and_2 = { value = aroai_building_type_14_collected_data_1
add = aroai_building_type_14_collected_data_2 divide = 2 floor = yes }
aroai_building_type_15_collected_data_1 = { value = var:aroai_building_type_15_collected_data
subtract = { value = var:aroai_building_type_15_collected_data floor = yes } multiply = 100 }
aroai_building_type_15_collected_data_2 = { value = var:aroai_building_type_15_collected_data
subtract = { value = var:aroai_building_type_15_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_15_collected_data_3 = { value = var:aroai_building_type_15_collected_data
subtract = { value = var:aroai_building_type_15_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_15_collected_data_4 = { value = var:aroai_building_type_15_collected_data
subtract = { value = var:aroai_building_type_15_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_15_collected_data_5 = { value = var:aroai_building_type_15_collected_data
divide = 10000000 floor = yes }
aroai_building_type_15_collected_data_average_of_1_and_2 = { value = aroai_building_type_15_collected_data_1
add = aroai_building_type_15_collected_data_2 divide = 2 floor = yes }
aroai_building_type_16_collected_data_1 = { value = var:aroai_building_type_16_collected_data
subtract = { value = var:aroai_building_type_16_collected_data floor = yes } multiply = 100 }
aroai_building_type_16_collected_data_2 = { value = var:aroai_building_type_16_collected_data
subtract = { value = var:aroai_building_type_16_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_16_collected_data_3 = { value = var:aroai_building_type_16_collected_data
subtract = { value = var:aroai_building_type_16_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_16_collected_data_4 = { value = var:aroai_building_type_16_collected_data
subtract = { value = var:aroai_building_type_16_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_16_collected_data_5 = { value = var:aroai_building_type_16_collected_data
divide = 10000000 floor = yes }
aroai_building_type_16_collected_data_average_of_1_and_2 = { value = aroai_building_type_16_collected_data_1
add = aroai_building_type_16_collected_data_2 divide = 2 floor = yes }
aroai_building_type_17_collected_data_1 = { value = var:aroai_building_type_17_collected_data
subtract = { value = var:aroai_building_type_17_collected_data floor = yes } multiply = 100 }
aroai_building_type_17_collected_data_2 = { value = var:aroai_building_type_17_collected_data
subtract = { value = var:aroai_building_type_17_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_17_collected_data_3 = { value = var:aroai_building_type_17_collected_data
subtract = { value = var:aroai_building_type_17_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_17_collected_data_4 = { value = var:aroai_building_type_17_collected_data
subtract = { value = var:aroai_building_type_17_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_17_collected_data_5 = { value = var:aroai_building_type_17_collected_data
divide = 10000000 floor = yes }
aroai_building_type_17_collected_data_average_of_1_and_2 = { value = aroai_building_type_17_collected_data_1
add = aroai_building_type_17_collected_data_2 divide = 2 floor = yes }
aroai_building_type_18_collected_data_1 = { value = var:aroai_building_type_18_collected_data
subtract = { value = var:aroai_building_type_18_collected_data floor = yes } multiply = 100 }
aroai_building_type_18_collected_data_2 = { value = var:aroai_building_type_18_collected_data
subtract = { value = var:aroai_building_type_18_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_18_collected_data_3 = { value = var:aroai_building_type_18_collected_data
subtract = { value = var:aroai_building_type_18_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_18_collected_data_4 = { value = var:aroai_building_type_18_collected_data
subtract = { value = var:aroai_building_type_18_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_18_collected_data_5 = { value = var:aroai_building_type_18_collected_data
divide = 10000000 floor = yes }
aroai_building_type_18_collected_data_average_of_1_and_2 = { value = aroai_building_type_18_collected_data_1
add = aroai_building_type_18_collected_data_2 divide = 2 floor = yes }
aroai_building_type_19_collected_data_1 = { value = var:aroai_building_type_19_collected_data
subtract = { value = var:aroai_building_type_19_collected_data floor = yes } multiply = 100 }
aroai_building_type_19_collected_data_2 = { value = var:aroai_building_type_19_collected_data
subtract = { value = var:aroai_building_type_19_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_19_collected_data_3 = { value = var:aroai_building_type_19_collected_data
subtract = { value = var:aroai_building_type_19_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_19_collected_data_4 = { value = var:aroai_building_type_19_collected_data
subtract = { value = var:aroai_building_type_19_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_19_collected_data_5 = { value = var:aroai_building_type_19_collected_data
divide = 10000000 floor = yes }
aroai_building_type_19_collected_data_average_of_1_and_2 = { value = aroai_building_type_19_collected_data_1
add = aroai_building_type_19_collected_data_2 divide = 2 floor = yes }
aroai_building_type_20_collected_data_1 = { value = var:aroai_building_type_20_collected_data
subtract = { value = var:aroai_building_type_20_collected_data floor = yes } multiply = 100 }
aroai_building_type_20_collected_data_2 = { value = var:aroai_building_type_20_collected_data
subtract = { value = var:aroai_building_type_20_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_20_collected_data_3 = { value = var:aroai_building_type_20_collected_data
subtract = { value = var:aroai_building_type_20_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_20_collected_data_4 = { value = var:aroai_building_type_20_collected_data
subtract = { value = var:aroai_building_type_20_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_20_collected_data_5 = { value = var:aroai_building_type_20_collected_data
divide = 10000000 floor = yes }
aroai_building_type_20_collected_data_average_of_1_and_2 = { value = aroai_building_type_20_collected_data_1
add = aroai_building_type_20_collected_data_2 divide = 2 floor = yes }
aroai_building_type_21_collected_data_1 = { value = var:aroai_building_type_21_collected_data
subtract = { value = var:aroai_building_type_21_collected_data floor = yes } multiply = 100 }
aroai_building_type_21_collected_data_2 = { value = var:aroai_building_type_21_collected_data
subtract = { value = var:aroai_building_type_21_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_21_collected_data_3 = { value = var:aroai_building_type_21_collected_data
subtract = { value = var:aroai_building_type_21_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_21_collected_data_4 = { value = var:aroai_building_type_21_collected_data
subtract = { value = var:aroai_building_type_21_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_21_collected_data_5 = { value = var:aroai_building_type_21_collected_data
divide = 10000000 floor = yes }
aroai_building_type_21_collected_data_average_of_1_and_2 = { value = aroai_building_type_21_collected_data_1
add = aroai_building_type_21_collected_data_2 divide = 2 floor = yes }
aroai_building_type_22_collected_data_1 = { value = var:aroai_building_type_22_collected_data
subtract = { value = var:aroai_building_type_22_collected_data floor = yes } multiply = 100 }
aroai_building_type_22_collected_data_2 = { value = var:aroai_building_type_22_collected_data
subtract = { value = var:aroai_building_type_22_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_22_collected_data_3 = { value = var:aroai_building_type_22_collected_data
subtract = { value = var:aroai_building_type_22_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_22_collected_data_4 = { value = var:aroai_building_type_22_collected_data
subtract = { value = var:aroai_building_type_22_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_22_collected_data_5 = { value = var:aroai_building_type_22_collected_data
divide = 10000000 floor = yes }
aroai_building_type_22_collected_data_average_of_1_and_2 = { value = aroai_building_type_22_collected_data_1
add = aroai_building_type_22_collected_data_2 divide = 2 floor = yes }
aroai_building_type_23_collected_data_1 = { value = var:aroai_building_type_23_collected_data
subtract = { value = var:aroai_building_type_23_collected_data floor = yes } multiply = 100 }
aroai_building_type_23_collected_data_2 = { value = var:aroai_building_type_23_collected_data
subtract = { value = var:aroai_building_type_23_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_23_collected_data_3 = { value = var:aroai_building_type_23_collected_data
subtract = { value = var:aroai_building_type_23_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_23_collected_data_4 = { value = var:aroai_building_type_23_collected_data
subtract = { value = var:aroai_building_type_23_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_23_collected_data_5 = { value = var:aroai_building_type_23_collected_data
divide = 10000000 floor = yes }
aroai_building_type_23_collected_data_average_of_1_and_2 = { value = aroai_building_type_23_collected_data_1
add = aroai_building_type_23_collected_data_2 divide = 2 floor = yes }
aroai_building_type_24_collected_data_1 = { value = var:aroai_building_type_24_collected_data
subtract = { value = var:aroai_building_type_24_collected_data floor = yes } multiply = 100 }
aroai_building_type_24_collected_data_2 = { value = var:aroai_building_type_24_collected_data
subtract = { value = var:aroai_building_type_24_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_24_collected_data_3 = { value = var:aroai_building_type_24_collected_data
subtract = { value = var:aroai_building_type_24_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_24_collected_data_4 = { value = var:aroai_building_type_24_collected_data
subtract = { value = var:aroai_building_type_24_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_24_collected_data_5 = { value = var:aroai_building_type_24_collected_data
divide = 10000000 floor = yes }
aroai_building_type_24_collected_data_average_of_1_and_2 = { value = aroai_building_type_24_collected_data_1
add = aroai_building_type_24_collected_data_2 divide = 2 floor = yes }
aroai_building_type_25_collected_data_1 = { value = var:aroai_building_type_25_collected_data
subtract = { value = var:aroai_building_type_25_collected_data floor = yes } multiply = 100 }
aroai_building_type_25_collected_data_2 = { value = var:aroai_building_type_25_collected_data
subtract = { value = var:aroai_building_type_25_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_25_collected_data_3 = { value = var:aroai_building_type_25_collected_data
subtract = { value = var:aroai_building_type_25_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_25_collected_data_4 = { value = var:aroai_building_type_25_collected_data
subtract = { value = var:aroai_building_type_25_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_25_collected_data_5 = { value = var:aroai_building_type_25_collected_data
divide = 10000000 floor = yes }
aroai_building_type_25_collected_data_average_of_1_and_2 = { value = aroai_building_type_25_collected_data_1
add = aroai_building_type_25_collected_data_2 divide = 2 floor = yes }
aroai_building_type_26_collected_data_1 = { value = var:aroai_building_type_26_collected_data
subtract = { value = var:aroai_building_type_26_collected_data floor = yes } multiply = 100 }
aroai_building_type_26_collected_data_2 = { value = var:aroai_building_type_26_collected_data
subtract = { value = var:aroai_building_type_26_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_26_collected_data_3 = { value = var:aroai_building_type_26_collected_data
subtract = { value = var:aroai_building_type_26_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_26_collected_data_4 = { value = var:aroai_building_type_26_collected_data
subtract = { value = var:aroai_building_type_26_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_26_collected_data_5 = { value = var:aroai_building_type_26_collected_data
divide = 10000000 floor = yes }
aroai_building_type_26_collected_data_average_of_1_and_2 = { value = aroai_building_type_26_collected_data_1
add = aroai_building_type_26_collected_data_2 divide = 2 floor = yes }
aroai_building_type_27_collected_data_1 = { value = var:aroai_building_type_27_collected_data
subtract = { value = var:aroai_building_type_27_collected_data floor = yes } multiply = 100 }
aroai_building_type_27_collected_data_2 = { value = var:aroai_building_type_27_collected_data
subtract = { value = var:aroai_building_type_27_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_27_collected_data_3 = { value = var:aroai_building_type_27_collected_data
subtract = { value = var:aroai_building_type_27_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_27_collected_data_4 = { value = var:aroai_building_type_27_collected_data
subtract = { value = var:aroai_building_type_27_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_27_collected_data_5 = { value = var:aroai_building_type_27_collected_data
divide = 10000000 floor = yes }
aroai_building_type_27_collected_data_average_of_1_and_2 = { value = aroai_building_type_27_collected_data_1
add = aroai_building_type_27_collected_data_2 divide = 2 floor = yes }
aroai_building_type_28_collected_data_1 = { value = var:aroai_building_type_28_collected_data
subtract = { value = var:aroai_building_type_28_collected_data floor = yes } multiply = 100 }
aroai_building_type_28_collected_data_2 = { value = var:aroai_building_type_28_collected_data
subtract = { value = var:aroai_building_type_28_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_28_collected_data_3 = { value = var:aroai_building_type_28_collected_data
subtract = { value = var:aroai_building_type_28_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_28_collected_data_4 = { value = var:aroai_building_type_28_collected_data
subtract = { value = var:aroai_building_type_28_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_28_collected_data_5 = { value = var:aroai_building_type_28_collected_data
divide = 10000000 floor = yes }
aroai_building_type_28_collected_data_average_of_1_and_2 = { value = aroai_building_type_28_collected_data_1
add = aroai_building_type_28_collected_data_2 divide = 2 floor = yes }
aroai_building_type_29_collected_data_1 = { value = var:aroai_building_type_29_collected_data
subtract = { value = var:aroai_building_type_29_collected_data floor = yes } multiply = 100 }
aroai_building_type_29_collected_data_2 = { value = var:aroai_building_type_29_collected_data
subtract = { value = var:aroai_building_type_29_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_29_collected_data_3 = { value = var:aroai_building_type_29_collected_data
subtract = { value = var:aroai_building_type_29_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_29_collected_data_4 = { value = var:aroai_building_type_29_collected_data
subtract = { value = var:aroai_building_type_29_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_29_collected_data_5 = { value = var:aroai_building_type_29_collected_data
divide = 10000000 floor = yes }
aroai_building_type_29_collected_data_average_of_1_and_2 = { value = aroai_building_type_29_collected_data_1
add = aroai_building_type_29_collected_data_2 divide = 2 floor = yes }
aroai_building_type_30_collected_data_1 = { value = var:aroai_building_type_30_collected_data
subtract = { value = var:aroai_building_type_30_collected_data floor = yes } multiply = 100 }
aroai_building_type_30_collected_data_2 = { value = var:aroai_building_type_30_collected_data
subtract = { value = var:aroai_building_type_30_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_30_collected_data_3 = { value = var:aroai_building_type_30_collected_data
subtract = { value = var:aroai_building_type_30_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_30_collected_data_4 = { value = var:aroai_building_type_30_collected_data
subtract = { value = var:aroai_building_type_30_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_30_collected_data_5 = { value = var:aroai_building_type_30_collected_data
divide = 10000000 floor = yes }
aroai_building_type_30_collected_data_average_of_1_and_2 = { value = aroai_building_type_30_collected_data_1
add = aroai_building_type_30_collected_data_2 divide = 2 floor = yes }
aroai_building_type_31_collected_data_1 = { value = var:aroai_building_type_31_collected_data
subtract = { value = var:aroai_building_type_31_collected_data floor = yes } multiply = 100 }
aroai_building_type_31_collected_data_2 = { value = var:aroai_building_type_31_collected_data
subtract = { value = var:aroai_building_type_31_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_31_collected_data_3 = { value = var:aroai_building_type_31_collected_data
subtract = { value = var:aroai_building_type_31_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_31_collected_data_4 = { value = var:aroai_building_type_31_collected_data
subtract = { value = var:aroai_building_type_31_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_31_collected_data_5 = { value = var:aroai_building_type_31_collected_data
divide = 10000000 floor = yes }
aroai_building_type_31_collected_data_average_of_1_and_2 = { value = aroai_building_type_31_collected_data_1
add = aroai_building_type_31_collected_data_2 divide = 2 floor = yes }
aroai_building_type_32_collected_data_1 = { value = var:aroai_building_type_32_collected_data
subtract = { value = var:aroai_building_type_32_collected_data floor = yes } multiply = 100 }
aroai_building_type_32_collected_data_2 = { value = var:aroai_building_type_32_collected_data
subtract = { value = var:aroai_building_type_32_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_32_collected_data_3 = { value = var:aroai_building_type_32_collected_data
subtract = { value = var:aroai_building_type_32_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_32_collected_data_4 = { value = var:aroai_building_type_32_collected_data
subtract = { value = var:aroai_building_type_32_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_32_collected_data_5 = { value = var:aroai_building_type_32_collected_data
divide = 10000000 floor = yes }
aroai_building_type_32_collected_data_average_of_1_and_2 = { value = aroai_building_type_32_collected_data_1
add = aroai_building_type_32_collected_data_2 divide = 2 floor = yes }
aroai_building_type_33_collected_data_1 = { value = var:aroai_building_type_33_collected_data
subtract = { value = var:aroai_building_type_33_collected_data floor = yes } multiply = 100 }
aroai_building_type_33_collected_data_2 = { value = var:aroai_building_type_33_collected_data
subtract = { value = var:aroai_building_type_33_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_33_collected_data_3 = { value = var:aroai_building_type_33_collected_data
subtract = { value = var:aroai_building_type_33_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_33_collected_data_4 = { value = var:aroai_building_type_33_collected_data
subtract = { value = var:aroai_building_type_33_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_33_collected_data_5 = { value = var:aroai_building_type_33_collected_data
divide = 10000000 floor = yes }
aroai_building_type_33_collected_data_average_of_1_and_2 = { value = aroai_building_type_33_collected_data_1
add = aroai_building_type_33_collected_data_2 divide = 2 floor = yes }
aroai_building_type_34_collected_data_1 = { value = var:aroai_building_type_34_collected_data
subtract = { value = var:aroai_building_type_34_collected_data floor = yes } multiply = 100 }
aroai_building_type_34_collected_data_2 = { value = var:aroai_building_type_34_collected_data
subtract = { value = var:aroai_building_type_34_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_34_collected_data_3 = { value = var:aroai_building_type_34_collected_data
subtract = { value = var:aroai_building_type_34_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_34_collected_data_4 = { value = var:aroai_building_type_34_collected_data
subtract = { value = var:aroai_building_type_34_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_34_collected_data_5 = { value = var:aroai_building_type_34_collected_data
divide = 10000000 floor = yes }
aroai_building_type_34_collected_data_average_of_1_and_2 = { value = aroai_building_type_34_collected_data_1
add = aroai_building_type_34_collected_data_2 divide = 2 floor = yes }
aroai_building_type_35_collected_data_1 = { value = var:aroai_building_type_35_collected_data
subtract = { value = var:aroai_building_type_35_collected_data floor = yes } multiply = 100 }
aroai_building_type_35_collected_data_2 = { value = var:aroai_building_type_35_collected_data
subtract = { value = var:aroai_building_type_35_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_35_collected_data_3 = { value = var:aroai_building_type_35_collected_data
subtract = { value = var:aroai_building_type_35_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_35_collected_data_4 = { value = var:aroai_building_type_35_collected_data
subtract = { value = var:aroai_building_type_35_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_35_collected_data_5 = { value = var:aroai_building_type_35_collected_data
divide = 10000000 floor = yes }
aroai_building_type_35_collected_data_average_of_1_and_2 = { value = aroai_building_type_35_collected_data_1
add = aroai_building_type_35_collected_data_2 divide = 2 floor = yes }
aroai_building_type_36_collected_data_1 = { value = var:aroai_building_type_36_collected_data
subtract = { value = var:aroai_building_type_36_collected_data floor = yes } multiply = 100 }
aroai_building_type_36_collected_data_2 = { value = var:aroai_building_type_36_collected_data
subtract = { value = var:aroai_building_type_36_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_36_collected_data_3 = { value = var:aroai_building_type_36_collected_data
subtract = { value = var:aroai_building_type_36_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_36_collected_data_4 = { value = var:aroai_building_type_36_collected_data
subtract = { value = var:aroai_building_type_36_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_36_collected_data_5 = { value = var:aroai_building_type_36_collected_data
divide = 10000000 floor = yes }
aroai_building_type_36_collected_data_average_of_1_and_2 = { value = aroai_building_type_36_collected_data_1
add = aroai_building_type_36_collected_data_2 divide = 2 floor = yes }
aroai_building_type_37_collected_data_1 = { value = var:aroai_building_type_37_collected_data
subtract = { value = var:aroai_building_type_37_collected_data floor = yes } multiply = 100 }
aroai_building_type_37_collected_data_2 = { value = var:aroai_building_type_37_collected_data
subtract = { value = var:aroai_building_type_37_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_37_collected_data_3 = { value = var:aroai_building_type_37_collected_data
subtract = { value = var:aroai_building_type_37_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_37_collected_data_4 = { value = var:aroai_building_type_37_collected_data
subtract = { value = var:aroai_building_type_37_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_37_collected_data_5 = { value = var:aroai_building_type_37_collected_data
divide = 10000000 floor = yes }
aroai_building_type_37_collected_data_average_of_1_and_2 = { value = aroai_building_type_37_collected_data_1
add = aroai_building_type_37_collected_data_2 divide = 2 floor = yes }
aroai_building_type_38_collected_data_1 = { value = var:aroai_building_type_38_collected_data
subtract = { value = var:aroai_building_type_38_collected_data floor = yes } multiply = 100 }
aroai_building_type_38_collected_data_2 = { value = var:aroai_building_type_38_collected_data
subtract = { value = var:aroai_building_type_38_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_38_collected_data_3 = { value = var:aroai_building_type_38_collected_data
subtract = { value = var:aroai_building_type_38_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_38_collected_data_4 = { value = var:aroai_building_type_38_collected_data
subtract = { value = var:aroai_building_type_38_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_38_collected_data_5 = { value = var:aroai_building_type_38_collected_data
divide = 10000000 floor = yes }
aroai_building_type_38_collected_data_average_of_1_and_2 = { value = aroai_building_type_38_collected_data_1
add = aroai_building_type_38_collected_data_2 divide = 2 floor = yes }
aroai_building_type_39_collected_data_1 = { value = var:aroai_building_type_39_collected_data
subtract = { value = var:aroai_building_type_39_collected_data floor = yes } multiply = 100 }
aroai_building_type_39_collected_data_2 = { value = var:aroai_building_type_39_collected_data
subtract = { value = var:aroai_building_type_39_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_39_collected_data_3 = { value = var:aroai_building_type_39_collected_data
subtract = { value = var:aroai_building_type_39_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_39_collected_data_4 = { value = var:aroai_building_type_39_collected_data
subtract = { value = var:aroai_building_type_39_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_39_collected_data_5 = { value = var:aroai_building_type_39_collected_data
divide = 10000000 floor = yes }
aroai_building_type_39_collected_data_average_of_1_and_2 = { value = aroai_building_type_39_collected_data_1
add = aroai_building_type_39_collected_data_2 divide = 2 floor = yes }
aroai_building_type_40_collected_data_1 = { value = var:aroai_building_type_40_collected_data
subtract = { value = var:aroai_building_type_40_collected_data floor = yes } multiply = 100 }
aroai_building_type_40_collected_data_2 = { value = var:aroai_building_type_40_collected_data
subtract = { value = var:aroai_building_type_40_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_40_collected_data_3 = { value = var:aroai_building_type_40_collected_data
subtract = { value = var:aroai_building_type_40_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_40_collected_data_4 = { value = var:aroai_building_type_40_collected_data
subtract = { value = var:aroai_building_type_40_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_40_collected_data_5 = { value = var:aroai_building_type_40_collected_data
divide = 10000000 floor = yes }
aroai_building_type_40_collected_data_average_of_1_and_2 = { value = aroai_building_type_40_collected_data_1
add = aroai_building_type_40_collected_data_2 divide = 2 floor = yes }
aroai_building_type_41_collected_data_1 = { value = var:aroai_building_type_41_collected_data
subtract = { value = var:aroai_building_type_41_collected_data floor = yes } multiply = 100 }
aroai_building_type_41_collected_data_2 = { value = var:aroai_building_type_41_collected_data
subtract = { value = var:aroai_building_type_41_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_41_collected_data_3 = { value = var:aroai_building_type_41_collected_data
subtract = { value = var:aroai_building_type_41_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_41_collected_data_4 = { value = var:aroai_building_type_41_collected_data
subtract = { value = var:aroai_building_type_41_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_41_collected_data_5 = { value = var:aroai_building_type_41_collected_data
divide = 10000000 floor = yes }
aroai_building_type_41_collected_data_average_of_1_and_2 = { value = aroai_building_type_41_collected_data_1
add = aroai_building_type_41_collected_data_2 divide = 2 floor = yes }
aroai_building_type_42_collected_data_1 = { value = var:aroai_building_type_42_collected_data
subtract = { value = var:aroai_building_type_42_collected_data floor = yes } multiply = 100 }
aroai_building_type_42_collected_data_2 = { value = var:aroai_building_type_42_collected_data
subtract = { value = var:aroai_building_type_42_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_42_collected_data_3 = { value = var:aroai_building_type_42_collected_data
subtract = { value = var:aroai_building_type_42_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_42_collected_data_4 = { value = var:aroai_building_type_42_collected_data
subtract = { value = var:aroai_building_type_42_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_42_collected_data_5 = { value = var:aroai_building_type_42_collected_data
divide = 10000000 floor = yes }
aroai_building_type_42_collected_data_average_of_1_and_2 = { value = aroai_building_type_42_collected_data_1
add = aroai_building_type_42_collected_data_2 divide = 2 floor = yes }
aroai_building_type_43_collected_data_1 = { value = var:aroai_building_type_43_collected_data
subtract = { value = var:aroai_building_type_43_collected_data floor = yes } multiply = 100 }
aroai_building_type_43_collected_data_2 = { value = var:aroai_building_type_43_collected_data
subtract = { value = var:aroai_building_type_43_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_43_collected_data_3 = { value = var:aroai_building_type_43_collected_data
subtract = { value = var:aroai_building_type_43_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_43_collected_data_4 = { value = var:aroai_building_type_43_collected_data
subtract = { value = var:aroai_building_type_43_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_43_collected_data_5 = { value = var:aroai_building_type_43_collected_data
divide = 10000000 floor = yes }
aroai_building_type_43_collected_data_average_of_1_and_2 = { value = aroai_building_type_43_collected_data_1
add = aroai_building_type_43_collected_data_2 divide = 2 floor = yes }
aroai_building_type_44_collected_data_1 = { value = var:aroai_building_type_44_collected_data
subtract = { value = var:aroai_building_type_44_collected_data floor = yes } multiply = 100 }
aroai_building_type_44_collected_data_2 = { value = var:aroai_building_type_44_collected_data
subtract = { value = var:aroai_building_type_44_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_44_collected_data_3 = { value = var:aroai_building_type_44_collected_data
subtract = { value = var:aroai_building_type_44_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_44_collected_data_4 = { value = var:aroai_building_type_44_collected_data
subtract = { value = var:aroai_building_type_44_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_44_collected_data_5 = { value = var:aroai_building_type_44_collected_data
divide = 10000000 floor = yes }
aroai_building_type_44_collected_data_average_of_1_and_2 = { value = aroai_building_type_44_collected_data_1
add = aroai_building_type_44_collected_data_2 divide = 2 floor = yes }
aroai_building_type_45_collected_data_1 = { value = var:aroai_building_type_45_collected_data
subtract = { value = var:aroai_building_type_45_collected_data floor = yes } multiply = 100 }
aroai_building_type_45_collected_data_2 = { value = var:aroai_building_type_45_collected_data
subtract = { value = var:aroai_building_type_45_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_45_collected_data_3 = { value = var:aroai_building_type_45_collected_data
subtract = { value = var:aroai_building_type_45_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_45_collected_data_4 = { value = var:aroai_building_type_45_collected_data
subtract = { value = var:aroai_building_type_45_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_45_collected_data_5 = { value = var:aroai_building_type_45_collected_data
divide = 10000000 floor = yes }
aroai_building_type_45_collected_data_average_of_1_and_2 = { value = aroai_building_type_45_collected_data_1
add = aroai_building_type_45_collected_data_2 divide = 2 floor = yes }
aroai_building_type_46_collected_data_1 = { value = var:aroai_building_type_46_collected_data
subtract = { value = var:aroai_building_type_46_collected_data floor = yes } multiply = 100 }
aroai_building_type_46_collected_data_2 = { value = var:aroai_building_type_46_collected_data
subtract = { value = var:aroai_building_type_46_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_46_collected_data_3 = { value = var:aroai_building_type_46_collected_data
subtract = { value = var:aroai_building_type_46_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_46_collected_data_4 = { value = var:aroai_building_type_46_collected_data
subtract = { value = var:aroai_building_type_46_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_46_collected_data_5 = { value = var:aroai_building_type_46_collected_data
divide = 10000000 floor = yes }
aroai_building_type_46_collected_data_average_of_1_and_2 = { value = aroai_building_type_46_collected_data_1
add = aroai_building_type_46_collected_data_2 divide = 2 floor = yes }
aroai_building_type_47_collected_data_1 = { value = var:aroai_building_type_47_collected_data
subtract = { value = var:aroai_building_type_47_collected_data floor = yes } multiply = 100 }
aroai_building_type_47_collected_data_2 = { value = var:aroai_building_type_47_collected_data
subtract = { value = var:aroai_building_type_47_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_47_collected_data_3 = { value = var:aroai_building_type_47_collected_data
subtract = { value = var:aroai_building_type_47_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_47_collected_data_4 = { value = var:aroai_building_type_47_collected_data
subtract = { value = var:aroai_building_type_47_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_47_collected_data_5 = { value = var:aroai_building_type_47_collected_data
divide = 10000000 floor = yes }
aroai_building_type_47_collected_data_average_of_1_and_2 = { value = aroai_building_type_47_collected_data_1
add = aroai_building_type_47_collected_data_2 divide = 2 floor = yes }
aroai_building_type_48_collected_data_1 = { value = var:aroai_building_type_48_collected_data
subtract = { value = var:aroai_building_type_48_collected_data floor = yes } multiply = 100 }
aroai_building_type_48_collected_data_2 = { value = var:aroai_building_type_48_collected_data
subtract = { value = var:aroai_building_type_48_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_48_collected_data_3 = { value = var:aroai_building_type_48_collected_data
subtract = { value = var:aroai_building_type_48_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_48_collected_data_4 = { value = var:aroai_building_type_48_collected_data
subtract = { value = var:aroai_building_type_48_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_48_collected_data_5 = { value = var:aroai_building_type_48_collected_data
divide = 10000000 floor = yes }
aroai_building_type_48_collected_data_average_of_1_and_2 = { value = aroai_building_type_48_collected_data_1
add = aroai_building_type_48_collected_data_2 divide = 2 floor = yes }
aroai_building_type_49_collected_data_1 = { value = var:aroai_building_type_49_collected_data
subtract = { value = var:aroai_building_type_49_collected_data floor = yes } multiply = 100 }
aroai_building_type_49_collected_data_2 = { value = var:aroai_building_type_49_collected_data
subtract = { value = var:aroai_building_type_49_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_49_collected_data_3 = { value = var:aroai_building_type_49_collected_data
subtract = { value = var:aroai_building_type_49_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_49_collected_data_4 = { value = var:aroai_building_type_49_collected_data
subtract = { value = var:aroai_building_type_49_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_49_collected_data_5 = { value = var:aroai_building_type_49_collected_data
divide = 10000000 floor = yes }
aroai_building_type_49_collected_data_average_of_1_and_2 = { value = aroai_building_type_49_collected_data_1
add = aroai_building_type_49_collected_data_2 divide = 2 floor = yes }
aroai_building_type_50_collected_data_1 = { value = var:aroai_building_type_50_collected_data
subtract = { value = var:aroai_building_type_50_collected_data floor = yes } multiply = 100 }
aroai_building_type_50_collected_data_2 = { value = var:aroai_building_type_50_collected_data
subtract = { value = var:aroai_building_type_50_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_50_collected_data_3 = { value = var:aroai_building_type_50_collected_data
subtract = { value = var:aroai_building_type_50_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_50_collected_data_4 = { value = var:aroai_building_type_50_collected_data
subtract = { value = var:aroai_building_type_50_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_50_collected_data_5 = { value = var:aroai_building_type_50_collected_data
divide = 10000000 floor = yes }
aroai_building_type_50_collected_data_average_of_1_and_2 = { value = aroai_building_type_50_collected_data_1
add = aroai_building_type_50_collected_data_2 divide = 2 floor = yes }
aroai_building_type_51_collected_data_1 = { value = var:aroai_building_type_51_collected_data
subtract = { value = var:aroai_building_type_51_collected_data floor = yes } multiply = 100 }
aroai_building_type_51_collected_data_2 = { value = var:aroai_building_type_51_collected_data
subtract = { value = var:aroai_building_type_51_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_51_collected_data_3 = { value = var:aroai_building_type_51_collected_data
subtract = { value = var:aroai_building_type_51_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_51_collected_data_4 = { value = var:aroai_building_type_51_collected_data
subtract = { value = var:aroai_building_type_51_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_51_collected_data_5 = { value = var:aroai_building_type_51_collected_data
divide = 10000000 floor = yes }
aroai_building_type_51_collected_data_average_of_1_and_2 = { value = aroai_building_type_51_collected_data_1
add = aroai_building_type_51_collected_data_2 divide = 2 floor = yes }
aroai_building_type_52_collected_data_1 = { value = var:aroai_building_type_52_collected_data
subtract = { value = var:aroai_building_type_52_collected_data floor = yes } multiply = 100 }
aroai_building_type_52_collected_data_2 = { value = var:aroai_building_type_52_collected_data
subtract = { value = var:aroai_building_type_52_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_52_collected_data_3 = { value = var:aroai_building_type_52_collected_data
subtract = { value = var:aroai_building_type_52_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_52_collected_data_4 = { value = var:aroai_building_type_52_collected_data
subtract = { value = var:aroai_building_type_52_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_52_collected_data_5 = { value = var:aroai_building_type_52_collected_data
divide = 10000000 floor = yes }
aroai_building_type_52_collected_data_average_of_1_and_2 = { value = aroai_building_type_52_collected_data_1
add = aroai_building_type_52_collected_data_2 divide = 2 floor = yes }
aroai_building_type_53_collected_data_1 = { value = var:aroai_building_type_53_collected_data
subtract = { value = var:aroai_building_type_53_collected_data floor = yes } multiply = 100 }
aroai_building_type_53_collected_data_2 = { value = var:aroai_building_type_53_collected_data
subtract = { value = var:aroai_building_type_53_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_53_collected_data_3 = { value = var:aroai_building_type_53_collected_data
subtract = { value = var:aroai_building_type_53_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_53_collected_data_4 = { value = var:aroai_building_type_53_collected_data
subtract = { value = var:aroai_building_type_53_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_53_collected_data_5 = { value = var:aroai_building_type_53_collected_data
divide = 10000000 floor = yes }
aroai_building_type_53_collected_data_average_of_1_and_2 = { value = aroai_building_type_53_collected_data_1
add = aroai_building_type_53_collected_data_2 divide = 2 floor = yes }
aroai_building_type_54_collected_data_1 = { value = var:aroai_building_type_54_collected_data
subtract = { value = var:aroai_building_type_54_collected_data floor = yes } multiply = 100 }
aroai_building_type_54_collected_data_2 = { value = var:aroai_building_type_54_collected_data
subtract = { value = var:aroai_building_type_54_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_54_collected_data_3 = { value = var:aroai_building_type_54_collected_data
subtract = { value = var:aroai_building_type_54_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_54_collected_data_4 = { value = var:aroai_building_type_54_collected_data
subtract = { value = var:aroai_building_type_54_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_54_collected_data_5 = { value = var:aroai_building_type_54_collected_data
divide = 10000000 floor = yes }
aroai_building_type_54_collected_data_average_of_1_and_2 = { value = aroai_building_type_54_collected_data_1
add = aroai_building_type_54_collected_data_2 divide = 2 floor = yes }
aroai_building_type_55_collected_data_1 = { value = var:aroai_building_type_55_collected_data
subtract = { value = var:aroai_building_type_55_collected_data floor = yes } multiply = 100 }
aroai_building_type_55_collected_data_2 = { value = var:aroai_building_type_55_collected_data
subtract = { value = var:aroai_building_type_55_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_55_collected_data_3 = { value = var:aroai_building_type_55_collected_data
subtract = { value = var:aroai_building_type_55_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_55_collected_data_4 = { value = var:aroai_building_type_55_collected_data
subtract = { value = var:aroai_building_type_55_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_55_collected_data_5 = { value = var:aroai_building_type_55_collected_data
divide = 10000000 floor = yes }
aroai_building_type_55_collected_data_average_of_1_and_2 = { value = aroai_building_type_55_collected_data_1
add = aroai_building_type_55_collected_data_2 divide = 2 floor = yes }
aroai_building_type_56_collected_data_1 = { value = var:aroai_building_type_56_collected_data
subtract = { value = var:aroai_building_type_56_collected_data floor = yes } multiply = 100 }
aroai_building_type_56_collected_data_2 = { value = var:aroai_building_type_56_collected_data
subtract = { value = var:aroai_building_type_56_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_56_collected_data_3 = { value = var:aroai_building_type_56_collected_data
subtract = { value = var:aroai_building_type_56_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_56_collected_data_4 = { value = var:aroai_building_type_56_collected_data
subtract = { value = var:aroai_building_type_56_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_56_collected_data_5 = { value = var:aroai_building_type_56_collected_data
divide = 10000000 floor = yes }
aroai_building_type_56_collected_data_average_of_1_and_2 = { value = aroai_building_type_56_collected_data_1
add = aroai_building_type_56_collected_data_2 divide = 2 floor = yes }
aroai_building_type_57_collected_data_1 = { value = var:aroai_building_type_57_collected_data
subtract = { value = var:aroai_building_type_57_collected_data floor = yes } multiply = 100 }
aroai_building_type_57_collected_data_2 = { value = var:aroai_building_type_57_collected_data
subtract = { value = var:aroai_building_type_57_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_57_collected_data_3 = { value = var:aroai_building_type_57_collected_data
subtract = { value = var:aroai_building_type_57_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_57_collected_data_4 = { value = var:aroai_building_type_57_collected_data
subtract = { value = var:aroai_building_type_57_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_57_collected_data_5 = { value = var:aroai_building_type_57_collected_data
divide = 10000000 floor = yes }
aroai_building_type_57_collected_data_average_of_1_and_2 = { value = aroai_building_type_57_collected_data_1
add = aroai_building_type_57_collected_data_2 divide = 2 floor = yes }
aroai_building_type_58_collected_data_1 = { value = var:aroai_building_type_58_collected_data
subtract = { value = var:aroai_building_type_58_collected_data floor = yes } multiply = 100 }
aroai_building_type_58_collected_data_2 = { value = var:aroai_building_type_58_collected_data
subtract = { value = var:aroai_building_type_58_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_58_collected_data_3 = { value = var:aroai_building_type_58_collected_data
subtract = { value = var:aroai_building_type_58_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_58_collected_data_4 = { value = var:aroai_building_type_58_collected_data
subtract = { value = var:aroai_building_type_58_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_58_collected_data_5 = { value = var:aroai_building_type_58_collected_data
divide = 10000000 floor = yes }
aroai_building_type_58_collected_data_average_of_1_and_2 = { value = aroai_building_type_58_collected_data_1
add = aroai_building_type_58_collected_data_2 divide = 2 floor = yes }
aroai_building_type_59_collected_data_1 = { value = var:aroai_building_type_59_collected_data
subtract = { value = var:aroai_building_type_59_collected_data floor = yes } multiply = 100 }
aroai_building_type_59_collected_data_2 = { value = var:aroai_building_type_59_collected_data
subtract = { value = var:aroai_building_type_59_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_59_collected_data_3 = { value = var:aroai_building_type_59_collected_data
subtract = { value = var:aroai_building_type_59_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_59_collected_data_4 = { value = var:aroai_building_type_59_collected_data
subtract = { value = var:aroai_building_type_59_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_59_collected_data_5 = { value = var:aroai_building_type_59_collected_data
divide = 10000000 floor = yes }
aroai_building_type_59_collected_data_average_of_1_and_2 = { value = aroai_building_type_59_collected_data_1
add = aroai_building_type_59_collected_data_2 divide = 2 floor = yes }
aroai_building_type_60_collected_data_1 = { value = var:aroai_building_type_60_collected_data
subtract = { value = var:aroai_building_type_60_collected_data floor = yes } multiply = 100 }
aroai_building_type_60_collected_data_2 = { value = var:aroai_building_type_60_collected_data
subtract = { value = var:aroai_building_type_60_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_60_collected_data_3 = { value = var:aroai_building_type_60_collected_data
subtract = { value = var:aroai_building_type_60_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_60_collected_data_4 = { value = var:aroai_building_type_60_collected_data
subtract = { value = var:aroai_building_type_60_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_60_collected_data_5 = { value = var:aroai_building_type_60_collected_data
divide = 10000000 floor = yes }
aroai_building_type_60_collected_data_average_of_1_and_2 = { value = aroai_building_type_60_collected_data_1
add = aroai_building_type_60_collected_data_2 divide = 2 floor = yes }
aroai_building_type_61_collected_data_1 = { value = var:aroai_building_type_61_collected_data
subtract = { value = var:aroai_building_type_61_collected_data floor = yes } multiply = 100 }
aroai_building_type_61_collected_data_2 = { value = var:aroai_building_type_61_collected_data
subtract = { value = var:aroai_building_type_61_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_61_collected_data_3 = { value = var:aroai_building_type_61_collected_data
subtract = { value = var:aroai_building_type_61_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_61_collected_data_4 = { value = var:aroai_building_type_61_collected_data
subtract = { value = var:aroai_building_type_61_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_61_collected_data_5 = { value = var:aroai_building_type_61_collected_data
divide = 10000000 floor = yes }
aroai_building_type_61_collected_data_average_of_1_and_2 = { value = aroai_building_type_61_collected_data_1
add = aroai_building_type_61_collected_data_2 divide = 2 floor = yes }
aroai_building_type_62_collected_data_1 = { value = var:aroai_building_type_62_collected_data
subtract = { value = var:aroai_building_type_62_collected_data floor = yes } multiply = 100 }
aroai_building_type_62_collected_data_2 = { value = var:aroai_building_type_62_collected_data
subtract = { value = var:aroai_building_type_62_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_62_collected_data_3 = { value = var:aroai_building_type_62_collected_data
subtract = { value = var:aroai_building_type_62_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_62_collected_data_4 = { value = var:aroai_building_type_62_collected_data
subtract = { value = var:aroai_building_type_62_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_62_collected_data_5 = { value = var:aroai_building_type_62_collected_data
divide = 10000000 floor = yes }
aroai_building_type_62_collected_data_average_of_1_and_2 = { value = aroai_building_type_62_collected_data_1
add = aroai_building_type_62_collected_data_2 divide = 2 floor = yes }
aroai_building_type_63_collected_data_1 = { value = var:aroai_building_type_63_collected_data
subtract = { value = var:aroai_building_type_63_collected_data floor = yes } multiply = 100 }
aroai_building_type_63_collected_data_2 = { value = var:aroai_building_type_63_collected_data
subtract = { value = var:aroai_building_type_63_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_63_collected_data_3 = { value = var:aroai_building_type_63_collected_data
subtract = { value = var:aroai_building_type_63_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_63_collected_data_4 = { value = var:aroai_building_type_63_collected_data
subtract = { value = var:aroai_building_type_63_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_63_collected_data_5 = { value = var:aroai_building_type_63_collected_data
divide = 10000000 floor = yes }
aroai_building_type_63_collected_data_average_of_1_and_2 = { value = aroai_building_type_63_collected_data_1
add = aroai_building_type_63_collected_data_2 divide = 2 floor = yes }
aroai_building_type_64_collected_data_1 = { value = var:aroai_building_type_64_collected_data
subtract = { value = var:aroai_building_type_64_collected_data floor = yes } multiply = 100 }
aroai_building_type_64_collected_data_2 = { value = var:aroai_building_type_64_collected_data
subtract = { value = var:aroai_building_type_64_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_64_collected_data_3 = { value = var:aroai_building_type_64_collected_data
subtract = { value = var:aroai_building_type_64_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_64_collected_data_4 = { value = var:aroai_building_type_64_collected_data
subtract = { value = var:aroai_building_type_64_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_64_collected_data_5 = { value = var:aroai_building_type_64_collected_data
divide = 10000000 floor = yes }
aroai_building_type_64_collected_data_average_of_1_and_2 = { value = aroai_building_type_64_collected_data_1
add = aroai_building_type_64_collected_data_2 divide = 2 floor = yes }
aroai_building_type_65_collected_data_1 = { value = var:aroai_building_type_65_collected_data
subtract = { value = var:aroai_building_type_65_collected_data floor = yes } multiply = 100 }
aroai_building_type_65_collected_data_2 = { value = var:aroai_building_type_65_collected_data
subtract = { value = var:aroai_building_type_65_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_65_collected_data_3 = { value = var:aroai_building_type_65_collected_data
subtract = { value = var:aroai_building_type_65_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_65_collected_data_4 = { value = var:aroai_building_type_65_collected_data
subtract = { value = var:aroai_building_type_65_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_65_collected_data_5 = { value = var:aroai_building_type_65_collected_data
divide = 10000000 floor = yes }
aroai_building_type_65_collected_data_average_of_1_and_2 = { value = aroai_building_type_65_collected_data_1
add = aroai_building_type_65_collected_data_2 divide = 2 floor = yes }
aroai_building_type_66_collected_data_1 = { value = var:aroai_building_type_66_collected_data
subtract = { value = var:aroai_building_type_66_collected_data floor = yes } multiply = 100 }
aroai_building_type_66_collected_data_2 = { value = var:aroai_building_type_66_collected_data
subtract = { value = var:aroai_building_type_66_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_66_collected_data_3 = { value = var:aroai_building_type_66_collected_data
subtract = { value = var:aroai_building_type_66_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_66_collected_data_4 = { value = var:aroai_building_type_66_collected_data
subtract = { value = var:aroai_building_type_66_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_66_collected_data_5 = { value = var:aroai_building_type_66_collected_data
divide = 10000000 floor = yes }
aroai_building_type_66_collected_data_average_of_1_and_2 = { value = aroai_building_type_66_collected_data_1
add = aroai_building_type_66_collected_data_2 divide = 2 floor = yes }
aroai_building_type_67_collected_data_1 = { value = var:aroai_building_type_67_collected_data
subtract = { value = var:aroai_building_type_67_collected_data floor = yes } multiply = 100 }
aroai_building_type_67_collected_data_2 = { value = var:aroai_building_type_67_collected_data
subtract = { value = var:aroai_building_type_67_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_67_collected_data_3 = { value = var:aroai_building_type_67_collected_data
subtract = { value = var:aroai_building_type_67_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_67_collected_data_4 = { value = var:aroai_building_type_67_collected_data
subtract = { value = var:aroai_building_type_67_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_67_collected_data_5 = { value = var:aroai_building_type_67_collected_data
divide = 10000000 floor = yes }
aroai_building_type_67_collected_data_average_of_1_and_2 = { value = aroai_building_type_67_collected_data_1
add = aroai_building_type_67_collected_data_2 divide = 2 floor = yes }
aroai_building_type_68_collected_data_1 = { value = var:aroai_building_type_68_collected_data
subtract = { value = var:aroai_building_type_68_collected_data floor = yes } multiply = 100 }
aroai_building_type_68_collected_data_2 = { value = var:aroai_building_type_68_collected_data
subtract = { value = var:aroai_building_type_68_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_68_collected_data_3 = { value = var:aroai_building_type_68_collected_data
subtract = { value = var:aroai_building_type_68_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_68_collected_data_4 = { value = var:aroai_building_type_68_collected_data
subtract = { value = var:aroai_building_type_68_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_68_collected_data_5 = { value = var:aroai_building_type_68_collected_data
divide = 10000000 floor = yes }
aroai_building_type_68_collected_data_average_of_1_and_2 = { value = aroai_building_type_68_collected_data_1
add = aroai_building_type_68_collected_data_2 divide = 2 floor = yes }
aroai_building_type_69_collected_data_1 = { value = var:aroai_building_type_69_collected_data
subtract = { value = var:aroai_building_type_69_collected_data floor = yes } multiply = 100 }
aroai_building_type_69_collected_data_2 = { value = var:aroai_building_type_69_collected_data
subtract = { value = var:aroai_building_type_69_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_69_collected_data_3 = { value = var:aroai_building_type_69_collected_data
subtract = { value = var:aroai_building_type_69_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_69_collected_data_4 = { value = var:aroai_building_type_69_collected_data
subtract = { value = var:aroai_building_type_69_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_69_collected_data_5 = { value = var:aroai_building_type_69_collected_data
divide = 10000000 floor = yes }
aroai_building_type_69_collected_data_average_of_1_and_2 = { value = aroai_building_type_69_collected_data_1
add = aroai_building_type_69_collected_data_2 divide = 2 floor = yes }
aroai_building_type_70_collected_data_1 = { value = var:aroai_building_type_70_collected_data
subtract = { value = var:aroai_building_type_70_collected_data floor = yes } multiply = 100 }
aroai_building_type_70_collected_data_2 = { value = var:aroai_building_type_70_collected_data
subtract = { value = var:aroai_building_type_70_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_70_collected_data_3 = { value = var:aroai_building_type_70_collected_data
subtract = { value = var:aroai_building_type_70_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_70_collected_data_4 = { value = var:aroai_building_type_70_collected_data
subtract = { value = var:aroai_building_type_70_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_70_collected_data_5 = { value = var:aroai_building_type_70_collected_data
divide = 10000000 floor = yes }
aroai_building_type_70_collected_data_average_of_1_and_2 = { value = aroai_building_type_70_collected_data_1
add = aroai_building_type_70_collected_data_2 divide = 2 floor = yes }
aroai_building_type_71_collected_data_1 = { value = var:aroai_building_type_71_collected_data
subtract = { value = var:aroai_building_type_71_collected_data floor = yes } multiply = 100 }
aroai_building_type_71_collected_data_2 = { value = var:aroai_building_type_71_collected_data
subtract = { value = var:aroai_building_type_71_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_71_collected_data_3 = { value = var:aroai_building_type_71_collected_data
subtract = { value = var:aroai_building_type_71_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_71_collected_data_4 = { value = var:aroai_building_type_71_collected_data
subtract = { value = var:aroai_building_type_71_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_71_collected_data_5 = { value = var:aroai_building_type_71_collected_data
divide = 10000000 floor = yes }
aroai_building_type_71_collected_data_average_of_1_and_2 = { value = aroai_building_type_71_collected_data_1
add = aroai_building_type_71_collected_data_2 divide = 2 floor = yes }
aroai_building_type_72_collected_data_1 = { value = var:aroai_building_type_72_collected_data
subtract = { value = var:aroai_building_type_72_collected_data floor = yes } multiply = 100 }
aroai_building_type_72_collected_data_2 = { value = var:aroai_building_type_72_collected_data
subtract = { value = var:aroai_building_type_72_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_72_collected_data_3 = { value = var:aroai_building_type_72_collected_data
subtract = { value = var:aroai_building_type_72_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_72_collected_data_4 = { value = var:aroai_building_type_72_collected_data
subtract = { value = var:aroai_building_type_72_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_72_collected_data_5 = { value = var:aroai_building_type_72_collected_data
divide = 10000000 floor = yes }
aroai_building_type_72_collected_data_average_of_1_and_2 = { value = aroai_building_type_72_collected_data_1
add = aroai_building_type_72_collected_data_2 divide = 2 floor = yes }
aroai_building_type_73_collected_data_1 = { value = var:aroai_building_type_73_collected_data
subtract = { value = var:aroai_building_type_73_collected_data floor = yes } multiply = 100 }
aroai_building_type_73_collected_data_2 = { value = var:aroai_building_type_73_collected_data
subtract = { value = var:aroai_building_type_73_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_73_collected_data_3 = { value = var:aroai_building_type_73_collected_data
subtract = { value = var:aroai_building_type_73_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_73_collected_data_4 = { value = var:aroai_building_type_73_collected_data
subtract = { value = var:aroai_building_type_73_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_73_collected_data_5 = { value = var:aroai_building_type_73_collected_data
divide = 10000000 floor = yes }
aroai_building_type_73_collected_data_average_of_1_and_2 = { value = aroai_building_type_73_collected_data_1
add = aroai_building_type_73_collected_data_2 divide = 2 floor = yes }
aroai_building_type_74_collected_data_1 = { value = var:aroai_building_type_74_collected_data
subtract = { value = var:aroai_building_type_74_collected_data floor = yes } multiply = 100 }
aroai_building_type_74_collected_data_2 = { value = var:aroai_building_type_74_collected_data
subtract = { value = var:aroai_building_type_74_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_74_collected_data_3 = { value = var:aroai_building_type_74_collected_data
subtract = { value = var:aroai_building_type_74_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_74_collected_data_4 = { value = var:aroai_building_type_74_collected_data
subtract = { value = var:aroai_building_type_74_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_74_collected_data_5 = { value = var:aroai_building_type_74_collected_data
divide = 10000000 floor = yes }
aroai_building_type_74_collected_data_average_of_1_and_2 = { value = aroai_building_type_74_collected_data_1
add = aroai_building_type_74_collected_data_2 divide = 2 floor = yes }
aroai_building_type_75_collected_data_1 = { value = var:aroai_building_type_75_collected_data
subtract = { value = var:aroai_building_type_75_collected_data floor = yes } multiply = 100 }
aroai_building_type_75_collected_data_2 = { value = var:aroai_building_type_75_collected_data
subtract = { value = var:aroai_building_type_75_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_75_collected_data_3 = { value = var:aroai_building_type_75_collected_data
subtract = { value = var:aroai_building_type_75_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_75_collected_data_4 = { value = var:aroai_building_type_75_collected_data
subtract = { value = var:aroai_building_type_75_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_75_collected_data_5 = { value = var:aroai_building_type_75_collected_data
divide = 10000000 floor = yes }
aroai_building_type_75_collected_data_average_of_1_and_2 = { value = aroai_building_type_75_collected_data_1
add = aroai_building_type_75_collected_data_2 divide = 2 floor = yes }
aroai_building_type_76_collected_data_1 = { value = var:aroai_building_type_76_collected_data
subtract = { value = var:aroai_building_type_76_collected_data floor = yes } multiply = 100 }
aroai_building_type_76_collected_data_2 = { value = var:aroai_building_type_76_collected_data
subtract = { value = var:aroai_building_type_76_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_76_collected_data_3 = { value = var:aroai_building_type_76_collected_data
subtract = { value = var:aroai_building_type_76_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_76_collected_data_4 = { value = var:aroai_building_type_76_collected_data
subtract = { value = var:aroai_building_type_76_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_76_collected_data_5 = { value = var:aroai_building_type_76_collected_data
divide = 10000000 floor = yes }
aroai_building_type_76_collected_data_average_of_1_and_2 = { value = aroai_building_type_76_collected_data_1
add = aroai_building_type_76_collected_data_2 divide = 2 floor = yes }
aroai_building_type_77_collected_data_1 = { value = var:aroai_building_type_77_collected_data
subtract = { value = var:aroai_building_type_77_collected_data floor = yes } multiply = 100 }
aroai_building_type_77_collected_data_2 = { value = var:aroai_building_type_77_collected_data
subtract = { value = var:aroai_building_type_77_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_77_collected_data_3 = { value = var:aroai_building_type_77_collected_data
subtract = { value = var:aroai_building_type_77_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_77_collected_data_4 = { value = var:aroai_building_type_77_collected_data
subtract = { value = var:aroai_building_type_77_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_77_collected_data_5 = { value = var:aroai_building_type_77_collected_data
divide = 10000000 floor = yes }
aroai_building_type_77_collected_data_average_of_1_and_2 = { value = aroai_building_type_77_collected_data_1
add = aroai_building_type_77_collected_data_2 divide = 2 floor = yes }
aroai_building_type_78_collected_data_1 = { value = var:aroai_building_type_78_collected_data
subtract = { value = var:aroai_building_type_78_collected_data floor = yes } multiply = 100 }
aroai_building_type_78_collected_data_2 = { value = var:aroai_building_type_78_collected_data
subtract = { value = var:aroai_building_type_78_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_78_collected_data_3 = { value = var:aroai_building_type_78_collected_data
subtract = { value = var:aroai_building_type_78_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_78_collected_data_4 = { value = var:aroai_building_type_78_collected_data
subtract = { value = var:aroai_building_type_78_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_78_collected_data_5 = { value = var:aroai_building_type_78_collected_data
divide = 10000000 floor = yes }
aroai_building_type_78_collected_data_average_of_1_and_2 = { value = aroai_building_type_78_collected_data_1
add = aroai_building_type_78_collected_data_2 divide = 2 floor = yes }
aroai_building_type_79_collected_data_1 = { value = var:aroai_building_type_79_collected_data
subtract = { value = var:aroai_building_type_79_collected_data floor = yes } multiply = 100 }
aroai_building_type_79_collected_data_2 = { value = var:aroai_building_type_79_collected_data
subtract = { value = var:aroai_building_type_79_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_79_collected_data_3 = { value = var:aroai_building_type_79_collected_data
subtract = { value = var:aroai_building_type_79_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_79_collected_data_4 = { value = var:aroai_building_type_79_collected_data
subtract = { value = var:aroai_building_type_79_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_79_collected_data_5 = { value = var:aroai_building_type_79_collected_data
divide = 10000000 floor = yes }
aroai_building_type_79_collected_data_average_of_1_and_2 = { value = aroai_building_type_79_collected_data_1
add = aroai_building_type_79_collected_data_2 divide = 2 floor = yes }
aroai_building_type_80_collected_data_1 = { value = var:aroai_building_type_80_collected_data
subtract = { value = var:aroai_building_type_80_collected_data floor = yes } multiply = 100 }
aroai_building_type_80_collected_data_2 = { value = var:aroai_building_type_80_collected_data
subtract = { value = var:aroai_building_type_80_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_80_collected_data_3 = { value = var:aroai_building_type_80_collected_data
subtract = { value = var:aroai_building_type_80_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_80_collected_data_4 = { value = var:aroai_building_type_80_collected_data
subtract = { value = var:aroai_building_type_80_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_80_collected_data_5 = { value = var:aroai_building_type_80_collected_data
divide = 10000000 floor = yes }
aroai_building_type_80_collected_data_average_of_1_and_2 = { value = aroai_building_type_80_collected_data_1
add = aroai_building_type_80_collected_data_2 divide = 2 floor = yes }
aroai_building_type_81_collected_data_1 = { value = var:aroai_building_type_81_collected_data
subtract = { value = var:aroai_building_type_81_collected_data floor = yes } multiply = 100 }
aroai_building_type_81_collected_data_2 = { value = var:aroai_building_type_81_collected_data
subtract = { value = var:aroai_building_type_81_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_81_collected_data_3 = { value = var:aroai_building_type_81_collected_data
subtract = { value = var:aroai_building_type_81_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_81_collected_data_4 = { value = var:aroai_building_type_81_collected_data
subtract = { value = var:aroai_building_type_81_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_81_collected_data_5 = { value = var:aroai_building_type_81_collected_data
divide = 10000000 floor = yes }
aroai_building_type_81_collected_data_average_of_1_and_2 = { value = aroai_building_type_81_collected_data_1
add = aroai_building_type_81_collected_data_2 divide = 2 floor = yes }
aroai_building_type_82_collected_data_1 = { value = var:aroai_building_type_82_collected_data
subtract = { value = var:aroai_building_type_82_collected_data floor = yes } multiply = 100 }
aroai_building_type_82_collected_data_2 = { value = var:aroai_building_type_82_collected_data
subtract = { value = var:aroai_building_type_82_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_82_collected_data_3 = { value = var:aroai_building_type_82_collected_data
subtract = { value = var:aroai_building_type_82_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_82_collected_data_4 = { value = var:aroai_building_type_82_collected_data
subtract = { value = var:aroai_building_type_82_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_82_collected_data_5 = { value = var:aroai_building_type_82_collected_data
divide = 10000000 floor = yes }
aroai_building_type_82_collected_data_average_of_1_and_2 = { value = aroai_building_type_82_collected_data_1
add = aroai_building_type_82_collected_data_2 divide = 2 floor = yes }
aroai_building_type_83_collected_data_1 = { value = var:aroai_building_type_83_collected_data
subtract = { value = var:aroai_building_type_83_collected_data floor = yes } multiply = 100 }
aroai_building_type_83_collected_data_2 = { value = var:aroai_building_type_83_collected_data
subtract = { value = var:aroai_building_type_83_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_83_collected_data_3 = { value = var:aroai_building_type_83_collected_data
subtract = { value = var:aroai_building_type_83_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_83_collected_data_4 = { value = var:aroai_building_type_83_collected_data
subtract = { value = var:aroai_building_type_83_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_83_collected_data_5 = { value = var:aroai_building_type_83_collected_data
divide = 10000000 floor = yes }
aroai_building_type_83_collected_data_average_of_1_and_2 = { value = aroai_building_type_83_collected_data_1
add = aroai_building_type_83_collected_data_2 divide = 2 floor = yes }
aroai_building_type_84_collected_data_1 = { value = var:aroai_building_type_84_collected_data
subtract = { value = var:aroai_building_type_84_collected_data floor = yes } multiply = 100 }
aroai_building_type_84_collected_data_2 = { value = var:aroai_building_type_84_collected_data
subtract = { value = var:aroai_building_type_84_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_84_collected_data_3 = { value = var:aroai_building_type_84_collected_data
subtract = { value = var:aroai_building_type_84_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_84_collected_data_4 = { value = var:aroai_building_type_84_collected_data
subtract = { value = var:aroai_building_type_84_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_84_collected_data_5 = { value = var:aroai_building_type_84_collected_data
divide = 10000000 floor = yes }
aroai_building_type_84_collected_data_average_of_1_and_2 = { value = aroai_building_type_84_collected_data_1
add = aroai_building_type_84_collected_data_2 divide = 2 floor = yes }
aroai_building_type_85_collected_data_1 = { value = var:aroai_building_type_85_collected_data
subtract = { value = var:aroai_building_type_85_collected_data floor = yes } multiply = 100 }
aroai_building_type_85_collected_data_2 = { value = var:aroai_building_type_85_collected_data
subtract = { value = var:aroai_building_type_85_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_85_collected_data_3 = { value = var:aroai_building_type_85_collected_data
subtract = { value = var:aroai_building_type_85_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_85_collected_data_4 = { value = var:aroai_building_type_85_collected_data
subtract = { value = var:aroai_building_type_85_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_85_collected_data_5 = { value = var:aroai_building_type_85_collected_data
divide = 10000000 floor = yes }
aroai_building_type_85_collected_data_average_of_1_and_2 = { value = aroai_building_type_85_collected_data_1
add = aroai_building_type_85_collected_data_2 divide = 2 floor = yes }
aroai_building_type_86_collected_data_1 = { value = var:aroai_building_type_86_collected_data
subtract = { value = var:aroai_building_type_86_collected_data floor = yes } multiply = 100 }
aroai_building_type_86_collected_data_2 = { value = var:aroai_building_type_86_collected_data
subtract = { value = var:aroai_building_type_86_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_86_collected_data_3 = { value = var:aroai_building_type_86_collected_data
subtract = { value = var:aroai_building_type_86_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_86_collected_data_4 = { value = var:aroai_building_type_86_collected_data
subtract = { value = var:aroai_building_type_86_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_86_collected_data_5 = { value = var:aroai_building_type_86_collected_data
divide = 10000000 floor = yes }
aroai_building_type_86_collected_data_average_of_1_and_2 = { value = aroai_building_type_86_collected_data_1
add = aroai_building_type_86_collected_data_2 divide = 2 floor = yes }
aroai_building_type_87_collected_data_1 = { value = var:aroai_building_type_87_collected_data
subtract = { value = var:aroai_building_type_87_collected_data floor = yes } multiply = 100 }
aroai_building_type_87_collected_data_2 = { value = var:aroai_building_type_87_collected_data
subtract = { value = var:aroai_building_type_87_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_87_collected_data_3 = { value = var:aroai_building_type_87_collected_data
subtract = { value = var:aroai_building_type_87_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_87_collected_data_4 = { value = var:aroai_building_type_87_collected_data
subtract = { value = var:aroai_building_type_87_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_87_collected_data_5 = { value = var:aroai_building_type_87_collected_data
divide = 10000000 floor = yes }
aroai_building_type_87_collected_data_average_of_1_and_2 = { value = aroai_building_type_87_collected_data_1
add = aroai_building_type_87_collected_data_2 divide = 2 floor = yes }
aroai_building_type_88_collected_data_1 = { value = var:aroai_building_type_88_collected_data
subtract = { value = var:aroai_building_type_88_collected_data floor = yes } multiply = 100 }
aroai_building_type_88_collected_data_2 = { value = var:aroai_building_type_88_collected_data
subtract = { value = var:aroai_building_type_88_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_88_collected_data_3 = { value = var:aroai_building_type_88_collected_data
subtract = { value = var:aroai_building_type_88_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_88_collected_data_4 = { value = var:aroai_building_type_88_collected_data
subtract = { value = var:aroai_building_type_88_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_88_collected_data_5 = { value = var:aroai_building_type_88_collected_data
divide = 10000000 floor = yes }
aroai_building_type_88_collected_data_average_of_1_and_2 = { value = aroai_building_type_88_collected_data_1
add = aroai_building_type_88_collected_data_2 divide = 2 floor = yes }
aroai_building_type_89_collected_data_1 = { value = var:aroai_building_type_89_collected_data
subtract = { value = var:aroai_building_type_89_collected_data floor = yes } multiply = 100 }
aroai_building_type_89_collected_data_2 = { value = var:aroai_building_type_89_collected_data
subtract = { value = var:aroai_building_type_89_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_89_collected_data_3 = { value = var:aroai_building_type_89_collected_data
subtract = { value = var:aroai_building_type_89_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_89_collected_data_4 = { value = var:aroai_building_type_89_collected_data
subtract = { value = var:aroai_building_type_89_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_89_collected_data_5 = { value = var:aroai_building_type_89_collected_data
divide = 10000000 floor = yes }
aroai_building_type_89_collected_data_average_of_1_and_2 = { value = aroai_building_type_89_collected_data_1
add = aroai_building_type_89_collected_data_2 divide = 2 floor = yes }
aroai_building_type_90_collected_data_1 = { value = var:aroai_building_type_90_collected_data
subtract = { value = var:aroai_building_type_90_collected_data floor = yes } multiply = 100 }
aroai_building_type_90_collected_data_2 = { value = var:aroai_building_type_90_collected_data
subtract = { value = var:aroai_building_type_90_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_90_collected_data_3 = { value = var:aroai_building_type_90_collected_data
subtract = { value = var:aroai_building_type_90_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_90_collected_data_4 = { value = var:aroai_building_type_90_collected_data
subtract = { value = var:aroai_building_type_90_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_90_collected_data_5 = { value = var:aroai_building_type_90_collected_data
divide = 10000000 floor = yes }
aroai_building_type_90_collected_data_average_of_1_and_2 = { value = aroai_building_type_90_collected_data_1
add = aroai_building_type_90_collected_data_2 divide = 2 floor = yes }
aroai_building_type_91_collected_data_1 = { value = var:aroai_building_type_91_collected_data
subtract = { value = var:aroai_building_type_91_collected_data floor = yes } multiply = 100 }
aroai_building_type_91_collected_data_2 = { value = var:aroai_building_type_91_collected_data
subtract = { value = var:aroai_building_type_91_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_91_collected_data_3 = { value = var:aroai_building_type_91_collected_data
subtract = { value = var:aroai_building_type_91_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_91_collected_data_4 = { value = var:aroai_building_type_91_collected_data
subtract = { value = var:aroai_building_type_91_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_91_collected_data_5 = { value = var:aroai_building_type_91_collected_data
divide = 10000000 floor = yes }
aroai_building_type_91_collected_data_average_of_1_and_2 = { value = aroai_building_type_91_collected_data_1
add = aroai_building_type_91_collected_data_2 divide = 2 floor = yes }
aroai_building_type_92_collected_data_1 = { value = var:aroai_building_type_92_collected_data
subtract = { value = var:aroai_building_type_92_collected_data floor = yes } multiply = 100 }
aroai_building_type_92_collected_data_2 = { value = var:aroai_building_type_92_collected_data
subtract = { value = var:aroai_building_type_92_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_92_collected_data_3 = { value = var:aroai_building_type_92_collected_data
subtract = { value = var:aroai_building_type_92_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_92_collected_data_4 = { value = var:aroai_building_type_92_collected_data
subtract = { value = var:aroai_building_type_92_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_92_collected_data_5 = { value = var:aroai_building_type_92_collected_data
divide = 10000000 floor = yes }
aroai_building_type_92_collected_data_average_of_1_and_2 = { value = aroai_building_type_92_collected_data_1
add = aroai_building_type_92_collected_data_2 divide = 2 floor = yes }
aroai_building_type_93_collected_data_1 = { value = var:aroai_building_type_93_collected_data
subtract = { value = var:aroai_building_type_93_collected_data floor = yes } multiply = 100 }
aroai_building_type_93_collected_data_2 = { value = var:aroai_building_type_93_collected_data
subtract = { value = var:aroai_building_type_93_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_93_collected_data_3 = { value = var:aroai_building_type_93_collected_data
subtract = { value = var:aroai_building_type_93_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_93_collected_data_4 = { value = var:aroai_building_type_93_collected_data
subtract = { value = var:aroai_building_type_93_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_93_collected_data_5 = { value = var:aroai_building_type_93_collected_data
divide = 10000000 floor = yes }
aroai_building_type_93_collected_data_average_of_1_and_2 = { value = aroai_building_type_93_collected_data_1
add = aroai_building_type_93_collected_data_2 divide = 2 floor = yes }
aroai_building_type_94_collected_data_1 = { value = var:aroai_building_type_94_collected_data
subtract = { value = var:aroai_building_type_94_collected_data floor = yes } multiply = 100 }
aroai_building_type_94_collected_data_2 = { value = var:aroai_building_type_94_collected_data
subtract = { value = var:aroai_building_type_94_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_94_collected_data_3 = { value = var:aroai_building_type_94_collected_data
subtract = { value = var:aroai_building_type_94_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_94_collected_data_4 = { value = var:aroai_building_type_94_collected_data
subtract = { value = var:aroai_building_type_94_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_94_collected_data_5 = { value = var:aroai_building_type_94_collected_data
divide = 10000000 floor = yes }
aroai_building_type_94_collected_data_average_of_1_and_2 = { value = aroai_building_type_94_collected_data_1
add = aroai_building_type_94_collected_data_2 divide = 2 floor = yes }
aroai_building_type_95_collected_data_1 = { value = var:aroai_building_type_95_collected_data
subtract = { value = var:aroai_building_type_95_collected_data floor = yes } multiply = 100 }
aroai_building_type_95_collected_data_2 = { value = var:aroai_building_type_95_collected_data
subtract = { value = var:aroai_building_type_95_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_95_collected_data_3 = { value = var:aroai_building_type_95_collected_data
subtract = { value = var:aroai_building_type_95_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_95_collected_data_4 = { value = var:aroai_building_type_95_collected_data
subtract = { value = var:aroai_building_type_95_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_95_collected_data_5 = { value = var:aroai_building_type_95_collected_data
divide = 10000000 floor = yes }
aroai_building_type_95_collected_data_average_of_1_and_2 = { value = aroai_building_type_95_collected_data_1
add = aroai_building_type_95_collected_data_2 divide = 2 floor = yes }
aroai_building_type_96_collected_data_1 = { value = var:aroai_building_type_96_collected_data
subtract = { value = var:aroai_building_type_96_collected_data floor = yes } multiply = 100 }
aroai_building_type_96_collected_data_2 = { value = var:aroai_building_type_96_collected_data
subtract = { value = var:aroai_building_type_96_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_96_collected_data_3 = { value = var:aroai_building_type_96_collected_data
subtract = { value = var:aroai_building_type_96_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_96_collected_data_4 = { value = var:aroai_building_type_96_collected_data
subtract = { value = var:aroai_building_type_96_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_96_collected_data_5 = { value = var:aroai_building_type_96_collected_data
divide = 10000000 floor = yes }
aroai_building_type_96_collected_data_average_of_1_and_2 = { value = aroai_building_type_96_collected_data_1
add = aroai_building_type_96_collected_data_2 divide = 2 floor = yes }
aroai_building_type_97_collected_data_1 = { value = var:aroai_building_type_97_collected_data
subtract = { value = var:aroai_building_type_97_collected_data floor = yes } multiply = 100 }
aroai_building_type_97_collected_data_2 = { value = var:aroai_building_type_97_collected_data
subtract = { value = var:aroai_building_type_97_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_97_collected_data_3 = { value = var:aroai_building_type_97_collected_data
subtract = { value = var:aroai_building_type_97_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_97_collected_data_4 = { value = var:aroai_building_type_97_collected_data
subtract = { value = var:aroai_building_type_97_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_97_collected_data_5 = { value = var:aroai_building_type_97_collected_data
divide = 10000000 floor = yes }
aroai_building_type_97_collected_data_average_of_1_and_2 = { value = aroai_building_type_97_collected_data_1
add = aroai_building_type_97_collected_data_2 divide = 2 floor = yes }
aroai_building_type_98_collected_data_1 = { value = var:aroai_building_type_98_collected_data
subtract = { value = var:aroai_building_type_98_collected_data floor = yes } multiply = 100 }
aroai_building_type_98_collected_data_2 = { value = var:aroai_building_type_98_collected_data
subtract = { value = var:aroai_building_type_98_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_98_collected_data_3 = { value = var:aroai_building_type_98_collected_data
subtract = { value = var:aroai_building_type_98_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_98_collected_data_4 = { value = var:aroai_building_type_98_collected_data
subtract = { value = var:aroai_building_type_98_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_98_collected_data_5 = { value = var:aroai_building_type_98_collected_data
divide = 10000000 floor = yes }
aroai_building_type_98_collected_data_average_of_1_and_2 = { value = aroai_building_type_98_collected_data_1
add = aroai_building_type_98_collected_data_2 divide = 2 floor = yes }
aroai_building_type_99_collected_data_1 = { value = var:aroai_building_type_99_collected_data
subtract = { value = var:aroai_building_type_99_collected_data floor = yes } multiply = 100 }
aroai_building_type_99_collected_data_2 = { value = var:aroai_building_type_99_collected_data
subtract = { value = var:aroai_building_type_99_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_99_collected_data_3 = { value = var:aroai_building_type_99_collected_data
subtract = { value = var:aroai_building_type_99_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_99_collected_data_4 = { value = var:aroai_building_type_99_collected_data
subtract = { value = var:aroai_building_type_99_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_99_collected_data_5 = { value = var:aroai_building_type_99_collected_data
divide = 10000000 floor = yes }
aroai_building_type_99_collected_data_average_of_1_and_2 = { value = aroai_building_type_99_collected_data_1
add = aroai_building_type_99_collected_data_2 divide = 2 floor = yes }
aroai_building_type_100_collected_data_1 = { value = var:aroai_building_type_100_collected_data
subtract = { value = var:aroai_building_type_100_collected_data floor = yes } multiply = 100 }
aroai_building_type_100_collected_data_2 = { value = var:aroai_building_type_100_collected_data
subtract = { value = var:aroai_building_type_100_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_100_collected_data_3 = { value = var:aroai_building_type_100_collected_data
subtract = { value = var:aroai_building_type_100_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_100_collected_data_4 = { value = var:aroai_building_type_100_collected_data
subtract = { value = var:aroai_building_type_100_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_100_collected_data_5 = { value = var:aroai_building_type_100_collected_data
divide = 10000000 floor = yes }
aroai_building_type_100_collected_data_average_of_1_and_2 = { value = aroai_building_type_100_collected_data_1
add = aroai_building_type_100_collected_data_2 divide = 2 floor = yes }
aroai_building_type_101_collected_data_1 = { value = var:aroai_building_type_101_collected_data
subtract = { value = var:aroai_building_type_101_collected_data floor = yes } multiply = 100 }
aroai_building_type_101_collected_data_2 = { value = var:aroai_building_type_101_collected_data
subtract = { value = var:aroai_building_type_101_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_101_collected_data_3 = { value = var:aroai_building_type_101_collected_data
subtract = { value = var:aroai_building_type_101_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_101_collected_data_4 = { value = var:aroai_building_type_101_collected_data
subtract = { value = var:aroai_building_type_101_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_101_collected_data_5 = { value = var:aroai_building_type_101_collected_data
divide = 10000000 floor = yes }
aroai_building_type_101_collected_data_average_of_1_and_2 = { value = aroai_building_type_101_collected_data_1
add = aroai_building_type_101_collected_data_2 divide = 2 floor = yes }
aroai_building_type_102_collected_data_1 = { value = var:aroai_building_type_102_collected_data
subtract = { value = var:aroai_building_type_102_collected_data floor = yes } multiply = 100 }
aroai_building_type_102_collected_data_2 = { value = var:aroai_building_type_102_collected_data
subtract = { value = var:aroai_building_type_102_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_102_collected_data_3 = { value = var:aroai_building_type_102_collected_data
subtract = { value = var:aroai_building_type_102_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_102_collected_data_4 = { value = var:aroai_building_type_102_collected_data
subtract = { value = var:aroai_building_type_102_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_102_collected_data_5 = { value = var:aroai_building_type_102_collected_data
divide = 10000000 floor = yes }
aroai_building_type_102_collected_data_average_of_1_and_2 = { value = aroai_building_type_102_collected_data_1
add = aroai_building_type_102_collected_data_2 divide = 2 floor = yes }
aroai_building_type_103_collected_data_1 = { value = var:aroai_building_type_103_collected_data
subtract = { value = var:aroai_building_type_103_collected_data floor = yes } multiply = 100 }
aroai_building_type_103_collected_data_2 = { value = var:aroai_building_type_103_collected_data
subtract = { value = var:aroai_building_type_103_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_103_collected_data_3 = { value = var:aroai_building_type_103_collected_data
subtract = { value = var:aroai_building_type_103_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_103_collected_data_4 = { value = var:aroai_building_type_103_collected_data
subtract = { value = var:aroai_building_type_103_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_103_collected_data_5 = { value = var:aroai_building_type_103_collected_data
divide = 10000000 floor = yes }
aroai_building_type_103_collected_data_average_of_1_and_2 = { value = aroai_building_type_103_collected_data_1
add = aroai_building_type_103_collected_data_2 divide = 2 floor = yes }
aroai_building_type_104_collected_data_1 = { value = var:aroai_building_type_104_collected_data
subtract = { value = var:aroai_building_type_104_collected_data floor = yes } multiply = 100 }
aroai_building_type_104_collected_data_2 = { value = var:aroai_building_type_104_collected_data
subtract = { value = var:aroai_building_type_104_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_104_collected_data_3 = { value = var:aroai_building_type_104_collected_data
subtract = { value = var:aroai_building_type_104_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_104_collected_data_4 = { value = var:aroai_building_type_104_collected_data
subtract = { value = var:aroai_building_type_104_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_104_collected_data_5 = { value = var:aroai_building_type_104_collected_data
divide = 10000000 floor = yes }
aroai_building_type_104_collected_data_average_of_1_and_2 = { value = aroai_building_type_104_collected_data_1
add = aroai_building_type_104_collected_data_2 divide = 2 floor = yes }
aroai_building_type_105_collected_data_1 = { value = var:aroai_building_type_105_collected_data
subtract = { value = var:aroai_building_type_105_collected_data floor = yes } multiply = 100 }
aroai_building_type_105_collected_data_2 = { value = var:aroai_building_type_105_collected_data
subtract = { value = var:aroai_building_type_105_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_105_collected_data_3 = { value = var:aroai_building_type_105_collected_data
subtract = { value = var:aroai_building_type_105_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_105_collected_data_4 = { value = var:aroai_building_type_105_collected_data
subtract = { value = var:aroai_building_type_105_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_105_collected_data_5 = { value = var:aroai_building_type_105_collected_data
divide = 10000000 floor = yes }
aroai_building_type_105_collected_data_average_of_1_and_2 = { value = aroai_building_type_105_collected_data_1
add = aroai_building_type_105_collected_data_2 divide = 2 floor = yes }
aroai_building_type_106_collected_data_1 = { value = var:aroai_building_type_106_collected_data
subtract = { value = var:aroai_building_type_106_collected_data floor = yes } multiply = 100 }
aroai_building_type_106_collected_data_2 = { value = var:aroai_building_type_106_collected_data
subtract = { value = var:aroai_building_type_106_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_106_collected_data_3 = { value = var:aroai_building_type_106_collected_data
subtract = { value = var:aroai_building_type_106_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_106_collected_data_4 = { value = var:aroai_building_type_106_collected_data
subtract = { value = var:aroai_building_type_106_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_106_collected_data_5 = { value = var:aroai_building_type_106_collected_data
divide = 10000000 floor = yes }
aroai_building_type_106_collected_data_average_of_1_and_2 = { value = aroai_building_type_106_collected_data_1
add = aroai_building_type_106_collected_data_2 divide = 2 floor = yes }
aroai_building_type_107_collected_data_1 = { value = var:aroai_building_type_107_collected_data
subtract = { value = var:aroai_building_type_107_collected_data floor = yes } multiply = 100 }
aroai_building_type_107_collected_data_2 = { value = var:aroai_building_type_107_collected_data
subtract = { value = var:aroai_building_type_107_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_107_collected_data_3 = { value = var:aroai_building_type_107_collected_data
subtract = { value = var:aroai_building_type_107_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_107_collected_data_4 = { value = var:aroai_building_type_107_collected_data
subtract = { value = var:aroai_building_type_107_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_107_collected_data_5 = { value = var:aroai_building_type_107_collected_data
divide = 10000000 floor = yes }
aroai_building_type_107_collected_data_average_of_1_and_2 = { value = aroai_building_type_107_collected_data_1
add = aroai_building_type_107_collected_data_2 divide = 2 floor = yes }
aroai_building_type_108_collected_data_1 = { value = var:aroai_building_type_108_collected_data
subtract = { value = var:aroai_building_type_108_collected_data floor = yes } multiply = 100 }
aroai_building_type_108_collected_data_2 = { value = var:aroai_building_type_108_collected_data
subtract = { value = var:aroai_building_type_108_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_108_collected_data_3 = { value = var:aroai_building_type_108_collected_data
subtract = { value = var:aroai_building_type_108_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_108_collected_data_4 = { value = var:aroai_building_type_108_collected_data
subtract = { value = var:aroai_building_type_108_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_108_collected_data_5 = { value = var:aroai_building_type_108_collected_data
divide = 10000000 floor = yes }
aroai_building_type_108_collected_data_average_of_1_and_2 = { value = aroai_building_type_108_collected_data_1
add = aroai_building_type_108_collected_data_2 divide = 2 floor = yes }
aroai_building_type_109_collected_data_1 = { value = var:aroai_building_type_109_collected_data
subtract = { value = var:aroai_building_type_109_collected_data floor = yes } multiply = 100 }
aroai_building_type_109_collected_data_2 = { value = var:aroai_building_type_109_collected_data
subtract = { value = var:aroai_building_type_109_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_109_collected_data_3 = { value = var:aroai_building_type_109_collected_data
subtract = { value = var:aroai_building_type_109_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_109_collected_data_4 = { value = var:aroai_building_type_109_collected_data
subtract = { value = var:aroai_building_type_109_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_109_collected_data_5 = { value = var:aroai_building_type_109_collected_data
divide = 10000000 floor = yes }
aroai_building_type_109_collected_data_average_of_1_and_2 = { value = aroai_building_type_109_collected_data_1
add = aroai_building_type_109_collected_data_2 divide = 2 floor = yes }
aroai_building_type_110_collected_data_1 = { value = var:aroai_building_type_110_collected_data
subtract = { value = var:aroai_building_type_110_collected_data floor = yes } multiply = 100 }
aroai_building_type_110_collected_data_2 = { value = var:aroai_building_type_110_collected_data
subtract = { value = var:aroai_building_type_110_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_110_collected_data_3 = { value = var:aroai_building_type_110_collected_data
subtract = { value = var:aroai_building_type_110_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_110_collected_data_4 = { value = var:aroai_building_type_110_collected_data
subtract = { value = var:aroai_building_type_110_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_110_collected_data_5 = { value = var:aroai_building_type_110_collected_data
divide = 10000000 floor = yes }
aroai_building_type_110_collected_data_average_of_1_and_2 = { value = aroai_building_type_110_collected_data_1
add = aroai_building_type_110_collected_data_2 divide = 2 floor = yes }
aroai_building_type_111_collected_data_1 = { value = var:aroai_building_type_111_collected_data
subtract = { value = var:aroai_building_type_111_collected_data floor = yes } multiply = 100 }
aroai_building_type_111_collected_data_2 = { value = var:aroai_building_type_111_collected_data
subtract = { value = var:aroai_building_type_111_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_111_collected_data_3 = { value = var:aroai_building_type_111_collected_data
subtract = { value = var:aroai_building_type_111_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_111_collected_data_4 = { value = var:aroai_building_type_111_collected_data
subtract = { value = var:aroai_building_type_111_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_111_collected_data_5 = { value = var:aroai_building_type_111_collected_data
divide = 10000000 floor = yes }
aroai_building_type_111_collected_data_average_of_1_and_2 = { value = aroai_building_type_111_collected_data_1
add = aroai_building_type_111_collected_data_2 divide = 2 floor = yes }
aroai_building_type_112_collected_data_1 = { value = var:aroai_building_type_112_collected_data
subtract = { value = var:aroai_building_type_112_collected_data floor = yes } multiply = 100 }
aroai_building_type_112_collected_data_2 = { value = var:aroai_building_type_112_collected_data
subtract = { value = var:aroai_building_type_112_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_112_collected_data_3 = { value = var:aroai_building_type_112_collected_data
subtract = { value = var:aroai_building_type_112_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_112_collected_data_4 = { value = var:aroai_building_type_112_collected_data
subtract = { value = var:aroai_building_type_112_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_112_collected_data_5 = { value = var:aroai_building_type_112_collected_data
divide = 10000000 floor = yes }
aroai_building_type_112_collected_data_average_of_1_and_2 = { value = aroai_building_type_112_collected_data_1
add = aroai_building_type_112_collected_data_2 divide = 2 floor = yes }
aroai_building_type_113_collected_data_1 = { value = var:aroai_building_type_113_collected_data
subtract = { value = var:aroai_building_type_113_collected_data floor = yes } multiply = 100 }
aroai_building_type_113_collected_data_2 = { value = var:aroai_building_type_113_collected_data
subtract = { value = var:aroai_building_type_113_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_113_collected_data_3 = { value = var:aroai_building_type_113_collected_data
subtract = { value = var:aroai_building_type_113_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_113_collected_data_4 = { value = var:aroai_building_type_113_collected_data
subtract = { value = var:aroai_building_type_113_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_113_collected_data_5 = { value = var:aroai_building_type_113_collected_data
divide = 10000000 floor = yes }
aroai_building_type_113_collected_data_average_of_1_and_2 = { value = aroai_building_type_113_collected_data_1
add = aroai_building_type_113_collected_data_2 divide = 2 floor = yes }
aroai_building_type_114_collected_data_1 = { value = var:aroai_building_type_114_collected_data
subtract = { value = var:aroai_building_type_114_collected_data floor = yes } multiply = 100 }
aroai_building_type_114_collected_data_2 = { value = var:aroai_building_type_114_collected_data
subtract = { value = var:aroai_building_type_114_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_114_collected_data_3 = { value = var:aroai_building_type_114_collected_data
subtract = { value = var:aroai_building_type_114_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_114_collected_data_4 = { value = var:aroai_building_type_114_collected_data
subtract = { value = var:aroai_building_type_114_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_114_collected_data_5 = { value = var:aroai_building_type_114_collected_data
divide = 10000000 floor = yes }
aroai_building_type_114_collected_data_average_of_1_and_2 = { value = aroai_building_type_114_collected_data_1
add = aroai_building_type_114_collected_data_2 divide = 2 floor = yes }
aroai_building_type_115_collected_data_1 = { value = var:aroai_building_type_115_collected_data
subtract = { value = var:aroai_building_type_115_collected_data floor = yes } multiply = 100 }
aroai_building_type_115_collected_data_2 = { value = var:aroai_building_type_115_collected_data
subtract = { value = var:aroai_building_type_115_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_115_collected_data_3 = { value = var:aroai_building_type_115_collected_data
subtract = { value = var:aroai_building_type_115_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_115_collected_data_4 = { value = var:aroai_building_type_115_collected_data
subtract = { value = var:aroai_building_type_115_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_115_collected_data_5 = { value = var:aroai_building_type_115_collected_data
divide = 10000000 floor = yes }
aroai_building_type_115_collected_data_average_of_1_and_2 = { value = aroai_building_type_115_collected_data_1
add = aroai_building_type_115_collected_data_2 divide = 2 floor = yes }
aroai_building_type_116_collected_data_1 = { value = var:aroai_building_type_116_collected_data
subtract = { value = var:aroai_building_type_116_collected_data floor = yes } multiply = 100 }
aroai_building_type_116_collected_data_2 = { value = var:aroai_building_type_116_collected_data
subtract = { value = var:aroai_building_type_116_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_116_collected_data_3 = { value = var:aroai_building_type_116_collected_data
subtract = { value = var:aroai_building_type_116_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_116_collected_data_4 = { value = var:aroai_building_type_116_collected_data
subtract = { value = var:aroai_building_type_116_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_116_collected_data_5 = { value = var:aroai_building_type_116_collected_data
divide = 10000000 floor = yes }
aroai_building_type_116_collected_data_average_of_1_and_2 = { value = aroai_building_type_116_collected_data_1
add = aroai_building_type_116_collected_data_2 divide = 2 floor = yes }
aroai_building_type_117_collected_data_1 = { value = var:aroai_building_type_117_collected_data
subtract = { value = var:aroai_building_type_117_collected_data floor = yes } multiply = 100 }
aroai_building_type_117_collected_data_2 = { value = var:aroai_building_type_117_collected_data
subtract = { value = var:aroai_building_type_117_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_117_collected_data_3 = { value = var:aroai_building_type_117_collected_data
subtract = { value = var:aroai_building_type_117_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_117_collected_data_4 = { value = var:aroai_building_type_117_collected_data
subtract = { value = var:aroai_building_type_117_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_117_collected_data_5 = { value = var:aroai_building_type_117_collected_data
divide = 10000000 floor = yes }
aroai_building_type_117_collected_data_average_of_1_and_2 = { value = aroai_building_type_117_collected_data_1
add = aroai_building_type_117_collected_data_2 divide = 2 floor = yes }
aroai_building_type_118_collected_data_1 = { value = var:aroai_building_type_118_collected_data
subtract = { value = var:aroai_building_type_118_collected_data floor = yes } multiply = 100 }
aroai_building_type_118_collected_data_2 = { value = var:aroai_building_type_118_collected_data
subtract = { value = var:aroai_building_type_118_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_118_collected_data_3 = { value = var:aroai_building_type_118_collected_data
subtract = { value = var:aroai_building_type_118_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_118_collected_data_4 = { value = var:aroai_building_type_118_collected_data
subtract = { value = var:aroai_building_type_118_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_118_collected_data_5 = { value = var:aroai_building_type_118_collected_data
divide = 10000000 floor = yes }
aroai_building_type_118_collected_data_average_of_1_and_2 = { value = aroai_building_type_118_collected_data_1
add = aroai_building_type_118_collected_data_2 divide = 2 floor = yes }
aroai_building_type_119_collected_data_1 = { value = var:aroai_building_type_119_collected_data
subtract = { value = var:aroai_building_type_119_collected_data floor = yes } multiply = 100 }
aroai_building_type_119_collected_data_2 = { value = var:aroai_building_type_119_collected_data
subtract = { value = var:aroai_building_type_119_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_119_collected_data_3 = { value = var:aroai_building_type_119_collected_data
subtract = { value = var:aroai_building_type_119_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_119_collected_data_4 = { value = var:aroai_building_type_119_collected_data
subtract = { value = var:aroai_building_type_119_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_119_collected_data_5 = { value = var:aroai_building_type_119_collected_data
divide = 10000000 floor = yes }
aroai_building_type_119_collected_data_average_of_1_and_2 = { value = aroai_building_type_119_collected_data_1
add = aroai_building_type_119_collected_data_2 divide = 2 floor = yes }
aroai_building_type_120_collected_data_1 = { value = var:aroai_building_type_120_collected_data
subtract = { value = var:aroai_building_type_120_collected_data floor = yes } multiply = 100 }
aroai_building_type_120_collected_data_2 = { value = var:aroai_building_type_120_collected_data
subtract = { value = var:aroai_building_type_120_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_120_collected_data_3 = { value = var:aroai_building_type_120_collected_data
subtract = { value = var:aroai_building_type_120_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_120_collected_data_4 = { value = var:aroai_building_type_120_collected_data
subtract = { value = var:aroai_building_type_120_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_120_collected_data_5 = { value = var:aroai_building_type_120_collected_data
divide = 10000000 floor = yes }
aroai_building_type_120_collected_data_average_of_1_and_2 = { value = aroai_building_type_120_collected_data_1
add = aroai_building_type_120_collected_data_2 divide = 2 floor = yes }
aroai_building_type_121_collected_data_1 = { value = var:aroai_building_type_121_collected_data
subtract = { value = var:aroai_building_type_121_collected_data floor = yes } multiply = 100 }
aroai_building_type_121_collected_data_2 = { value = var:aroai_building_type_121_collected_data
subtract = { value = var:aroai_building_type_121_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_121_collected_data_3 = { value = var:aroai_building_type_121_collected_data
subtract = { value = var:aroai_building_type_121_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_121_collected_data_4 = { value = var:aroai_building_type_121_collected_data
subtract = { value = var:aroai_building_type_121_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_121_collected_data_5 = { value = var:aroai_building_type_121_collected_data
divide = 10000000 floor = yes }
aroai_building_type_121_collected_data_average_of_1_and_2 = { value = aroai_building_type_121_collected_data_1
add = aroai_building_type_121_collected_data_2 divide = 2 floor = yes }
aroai_building_type_122_collected_data_1 = { value = var:aroai_building_type_122_collected_data
subtract = { value = var:aroai_building_type_122_collected_data floor = yes } multiply = 100 }
aroai_building_type_122_collected_data_2 = { value = var:aroai_building_type_122_collected_data
subtract = { value = var:aroai_building_type_122_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_122_collected_data_3 = { value = var:aroai_building_type_122_collected_data
subtract = { value = var:aroai_building_type_122_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_122_collected_data_4 = { value = var:aroai_building_type_122_collected_data
subtract = { value = var:aroai_building_type_122_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_122_collected_data_5 = { value = var:aroai_building_type_122_collected_data
divide = 10000000 floor = yes }
aroai_building_type_122_collected_data_average_of_1_and_2 = { value = aroai_building_type_122_collected_data_1
add = aroai_building_type_122_collected_data_2 divide = 2 floor = yes }
aroai_building_type_123_collected_data_1 = { value = var:aroai_building_type_123_collected_data
subtract = { value = var:aroai_building_type_123_collected_data floor = yes } multiply = 100 }
aroai_building_type_123_collected_data_2 = { value = var:aroai_building_type_123_collected_data
subtract = { value = var:aroai_building_type_123_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_123_collected_data_3 = { value = var:aroai_building_type_123_collected_data
subtract = { value = var:aroai_building_type_123_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_123_collected_data_4 = { value = var:aroai_building_type_123_collected_data
subtract = { value = var:aroai_building_type_123_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_123_collected_data_5 = { value = var:aroai_building_type_123_collected_data
divide = 10000000 floor = yes }
aroai_building_type_123_collected_data_average_of_1_and_2 = { value = aroai_building_type_123_collected_data_1
add = aroai_building_type_123_collected_data_2 divide = 2 floor = yes }
aroai_building_type_124_collected_data_1 = { value = var:aroai_building_type_124_collected_data
subtract = { value = var:aroai_building_type_124_collected_data floor = yes } multiply = 100 }
aroai_building_type_124_collected_data_2 = { value = var:aroai_building_type_124_collected_data
subtract = { value = var:aroai_building_type_124_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_124_collected_data_3 = { value = var:aroai_building_type_124_collected_data
subtract = { value = var:aroai_building_type_124_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_124_collected_data_4 = { value = var:aroai_building_type_124_collected_data
subtract = { value = var:aroai_building_type_124_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_124_collected_data_5 = { value = var:aroai_building_type_124_collected_data
divide = 10000000 floor = yes }
aroai_building_type_124_collected_data_average_of_1_and_2 = { value = aroai_building_type_124_collected_data_1
add = aroai_building_type_124_collected_data_2 divide = 2 floor = yes }
aroai_building_type_125_collected_data_1 = { value = var:aroai_building_type_125_collected_data
subtract = { value = var:aroai_building_type_125_collected_data floor = yes } multiply = 100 }
aroai_building_type_125_collected_data_2 = { value = var:aroai_building_type_125_collected_data
subtract = { value = var:aroai_building_type_125_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_125_collected_data_3 = { value = var:aroai_building_type_125_collected_data
subtract = { value = var:aroai_building_type_125_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_125_collected_data_4 = { value = var:aroai_building_type_125_collected_data
subtract = { value = var:aroai_building_type_125_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_125_collected_data_5 = { value = var:aroai_building_type_125_collected_data
divide = 10000000 floor = yes }
aroai_building_type_125_collected_data_average_of_1_and_2 = { value = aroai_building_type_125_collected_data_1
add = aroai_building_type_125_collected_data_2 divide = 2 floor = yes }
aroai_building_type_126_collected_data_1 = { value = var:aroai_building_type_126_collected_data
subtract = { value = var:aroai_building_type_126_collected_data floor = yes } multiply = 100 }
aroai_building_type_126_collected_data_2 = { value = var:aroai_building_type_126_collected_data
subtract = { value = var:aroai_building_type_126_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_126_collected_data_3 = { value = var:aroai_building_type_126_collected_data
subtract = { value = var:aroai_building_type_126_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_126_collected_data_4 = { value = var:aroai_building_type_126_collected_data
subtract = { value = var:aroai_building_type_126_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_126_collected_data_5 = { value = var:aroai_building_type_126_collected_data
divide = 10000000 floor = yes }
aroai_building_type_126_collected_data_average_of_1_and_2 = { value = aroai_building_type_126_collected_data_1
add = aroai_building_type_126_collected_data_2 divide = 2 floor = yes }
aroai_building_type_127_collected_data_1 = { value = var:aroai_building_type_127_collected_data
subtract = { value = var:aroai_building_type_127_collected_data floor = yes } multiply = 100 }
aroai_building_type_127_collected_data_2 = { value = var:aroai_building_type_127_collected_data
subtract = { value = var:aroai_building_type_127_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_127_collected_data_3 = { value = var:aroai_building_type_127_collected_data
subtract = { value = var:aroai_building_type_127_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_127_collected_data_4 = { value = var:aroai_building_type_127_collected_data
subtract = { value = var:aroai_building_type_127_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_127_collected_data_5 = { value = var:aroai_building_type_127_collected_data
divide = 10000000 floor = yes }
aroai_building_type_127_collected_data_average_of_1_and_2 = { value = aroai_building_type_127_collected_data_1
add = aroai_building_type_127_collected_data_2 divide = 2 floor = yes }
aroai_building_type_128_collected_data_1 = { value = var:aroai_building_type_128_collected_data
subtract = { value = var:aroai_building_type_128_collected_data floor = yes } multiply = 100 }
aroai_building_type_128_collected_data_2 = { value = var:aroai_building_type_128_collected_data
subtract = { value = var:aroai_building_type_128_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_128_collected_data_3 = { value = var:aroai_building_type_128_collected_data
subtract = { value = var:aroai_building_type_128_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_128_collected_data_4 = { value = var:aroai_building_type_128_collected_data
subtract = { value = var:aroai_building_type_128_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_128_collected_data_5 = { value = var:aroai_building_type_128_collected_data
divide = 10000000 floor = yes }
aroai_building_type_128_collected_data_average_of_1_and_2 = { value = aroai_building_type_128_collected_data_1
add = aroai_building_type_128_collected_data_2 divide = 2 floor = yes }
aroai_building_type_129_collected_data_1 = { value = var:aroai_building_type_129_collected_data
subtract = { value = var:aroai_building_type_129_collected_data floor = yes } multiply = 100 }
aroai_building_type_129_collected_data_2 = { value = var:aroai_building_type_129_collected_data
subtract = { value = var:aroai_building_type_129_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_129_collected_data_3 = { value = var:aroai_building_type_129_collected_data
subtract = { value = var:aroai_building_type_129_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_129_collected_data_4 = { value = var:aroai_building_type_129_collected_data
subtract = { value = var:aroai_building_type_129_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_129_collected_data_5 = { value = var:aroai_building_type_129_collected_data
divide = 10000000 floor = yes }
aroai_building_type_129_collected_data_average_of_1_and_2 = { value = aroai_building_type_129_collected_data_1
add = aroai_building_type_129_collected_data_2 divide = 2 floor = yes }
aroai_building_type_130_collected_data_1 = { value = var:aroai_building_type_130_collected_data
subtract = { value = var:aroai_building_type_130_collected_data floor = yes } multiply = 100 }
aroai_building_type_130_collected_data_2 = { value = var:aroai_building_type_130_collected_data
subtract = { value = var:aroai_building_type_130_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_130_collected_data_3 = { value = var:aroai_building_type_130_collected_data
subtract = { value = var:aroai_building_type_130_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_130_collected_data_4 = { value = var:aroai_building_type_130_collected_data
subtract = { value = var:aroai_building_type_130_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_130_collected_data_5 = { value = var:aroai_building_type_130_collected_data
divide = 10000000 floor = yes }
aroai_building_type_130_collected_data_average_of_1_and_2 = { value = aroai_building_type_130_collected_data_1
add = aroai_building_type_130_collected_data_2 divide = 2 floor = yes }
aroai_building_type_131_collected_data_1 = { value = var:aroai_building_type_131_collected_data
subtract = { value = var:aroai_building_type_131_collected_data floor = yes } multiply = 100 }
aroai_building_type_131_collected_data_2 = { value = var:aroai_building_type_131_collected_data
subtract = { value = var:aroai_building_type_131_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_131_collected_data_3 = { value = var:aroai_building_type_131_collected_data
subtract = { value = var:aroai_building_type_131_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_131_collected_data_4 = { value = var:aroai_building_type_131_collected_data
subtract = { value = var:aroai_building_type_131_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_131_collected_data_5 = { value = var:aroai_building_type_131_collected_data
divide = 10000000 floor = yes }
aroai_building_type_131_collected_data_average_of_1_and_2 = { value = aroai_building_type_131_collected_data_1
add = aroai_building_type_131_collected_data_2 divide = 2 floor = yes }
aroai_building_type_132_collected_data_1 = { value = var:aroai_building_type_132_collected_data
subtract = { value = var:aroai_building_type_132_collected_data floor = yes } multiply = 100 }
aroai_building_type_132_collected_data_2 = { value = var:aroai_building_type_132_collected_data
subtract = { value = var:aroai_building_type_132_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_132_collected_data_3 = { value = var:aroai_building_type_132_collected_data
subtract = { value = var:aroai_building_type_132_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_132_collected_data_4 = { value = var:aroai_building_type_132_collected_data
subtract = { value = var:aroai_building_type_132_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_132_collected_data_5 = { value = var:aroai_building_type_132_collected_data
divide = 10000000 floor = yes }
aroai_building_type_132_collected_data_average_of_1_and_2 = { value = aroai_building_type_132_collected_data_1
add = aroai_building_type_132_collected_data_2 divide = 2 floor = yes }
aroai_building_type_133_collected_data_1 = { value = var:aroai_building_type_133_collected_data
subtract = { value = var:aroai_building_type_133_collected_data floor = yes } multiply = 100 }
aroai_building_type_133_collected_data_2 = { value = var:aroai_building_type_133_collected_data
subtract = { value = var:aroai_building_type_133_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_133_collected_data_3 = { value = var:aroai_building_type_133_collected_data
subtract = { value = var:aroai_building_type_133_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_133_collected_data_4 = { value = var:aroai_building_type_133_collected_data
subtract = { value = var:aroai_building_type_133_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_133_collected_data_5 = { value = var:aroai_building_type_133_collected_data
divide = 10000000 floor = yes }
aroai_building_type_133_collected_data_average_of_1_and_2 = { value = aroai_building_type_133_collected_data_1
add = aroai_building_type_133_collected_data_2 divide = 2 floor = yes }
aroai_building_type_134_collected_data_1 = { value = var:aroai_building_type_134_collected_data
subtract = { value = var:aroai_building_type_134_collected_data floor = yes } multiply = 100 }
aroai_building_type_134_collected_data_2 = { value = var:aroai_building_type_134_collected_data
subtract = { value = var:aroai_building_type_134_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_134_collected_data_3 = { value = var:aroai_building_type_134_collected_data
subtract = { value = var:aroai_building_type_134_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_134_collected_data_4 = { value = var:aroai_building_type_134_collected_data
subtract = { value = var:aroai_building_type_134_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_134_collected_data_5 = { value = var:aroai_building_type_134_collected_data
divide = 10000000 floor = yes }
aroai_building_type_134_collected_data_average_of_1_and_2 = { value = aroai_building_type_134_collected_data_1
add = aroai_building_type_134_collected_data_2 divide = 2 floor = yes }
aroai_building_type_135_collected_data_1 = { value = var:aroai_building_type_135_collected_data
subtract = { value = var:aroai_building_type_135_collected_data floor = yes } multiply = 100 }
aroai_building_type_135_collected_data_2 = { value = var:aroai_building_type_135_collected_data
subtract = { value = var:aroai_building_type_135_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_135_collected_data_3 = { value = var:aroai_building_type_135_collected_data
subtract = { value = var:aroai_building_type_135_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_135_collected_data_4 = { value = var:aroai_building_type_135_collected_data
subtract = { value = var:aroai_building_type_135_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_135_collected_data_5 = { value = var:aroai_building_type_135_collected_data
divide = 10000000 floor = yes }
aroai_building_type_135_collected_data_average_of_1_and_2 = { value = aroai_building_type_135_collected_data_1
add = aroai_building_type_135_collected_data_2 divide = 2 floor = yes }
aroai_building_type_136_collected_data_1 = { value = var:aroai_building_type_136_collected_data
subtract = { value = var:aroai_building_type_136_collected_data floor = yes } multiply = 100 }
aroai_building_type_136_collected_data_2 = { value = var:aroai_building_type_136_collected_data
subtract = { value = var:aroai_building_type_136_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_136_collected_data_3 = { value = var:aroai_building_type_136_collected_data
subtract = { value = var:aroai_building_type_136_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_136_collected_data_4 = { value = var:aroai_building_type_136_collected_data
subtract = { value = var:aroai_building_type_136_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_136_collected_data_5 = { value = var:aroai_building_type_136_collected_data
divide = 10000000 floor = yes }
aroai_building_type_136_collected_data_average_of_1_and_2 = { value = aroai_building_type_136_collected_data_1
add = aroai_building_type_136_collected_data_2 divide = 2 floor = yes }
aroai_building_type_137_collected_data_1 = { value = var:aroai_building_type_137_collected_data
subtract = { value = var:aroai_building_type_137_collected_data floor = yes } multiply = 100 }
aroai_building_type_137_collected_data_2 = { value = var:aroai_building_type_137_collected_data
subtract = { value = var:aroai_building_type_137_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_137_collected_data_3 = { value = var:aroai_building_type_137_collected_data
subtract = { value = var:aroai_building_type_137_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_137_collected_data_4 = { value = var:aroai_building_type_137_collected_data
subtract = { value = var:aroai_building_type_137_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_137_collected_data_5 = { value = var:aroai_building_type_137_collected_data
divide = 10000000 floor = yes }
aroai_building_type_137_collected_data_average_of_1_and_2 = { value = aroai_building_type_137_collected_data_1
add = aroai_building_type_137_collected_data_2 divide = 2 floor = yes }
aroai_building_type_138_collected_data_1 = { value = var:aroai_building_type_138_collected_data
subtract = { value = var:aroai_building_type_138_collected_data floor = yes } multiply = 100 }
aroai_building_type_138_collected_data_2 = { value = var:aroai_building_type_138_collected_data
subtract = { value = var:aroai_building_type_138_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_138_collected_data_3 = { value = var:aroai_building_type_138_collected_data
subtract = { value = var:aroai_building_type_138_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_138_collected_data_4 = { value = var:aroai_building_type_138_collected_data
subtract = { value = var:aroai_building_type_138_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_138_collected_data_5 = { value = var:aroai_building_type_138_collected_data
divide = 10000000 floor = yes }
aroai_building_type_138_collected_data_average_of_1_and_2 = { value = aroai_building_type_138_collected_data_1
add = aroai_building_type_138_collected_data_2 divide = 2 floor = yes }
aroai_building_type_139_collected_data_1 = { value = var:aroai_building_type_139_collected_data
subtract = { value = var:aroai_building_type_139_collected_data floor = yes } multiply = 100 }
aroai_building_type_139_collected_data_2 = { value = var:aroai_building_type_139_collected_data
subtract = { value = var:aroai_building_type_139_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_139_collected_data_3 = { value = var:aroai_building_type_139_collected_data
subtract = { value = var:aroai_building_type_139_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_139_collected_data_4 = { value = var:aroai_building_type_139_collected_data
subtract = { value = var:aroai_building_type_139_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_139_collected_data_5 = { value = var:aroai_building_type_139_collected_data
divide = 10000000 floor = yes }
aroai_building_type_139_collected_data_average_of_1_and_2 = { value = aroai_building_type_139_collected_data_1
add = aroai_building_type_139_collected_data_2 divide = 2 floor = yes }
aroai_building_type_140_collected_data_1 = { value = var:aroai_building_type_140_collected_data
subtract = { value = var:aroai_building_type_140_collected_data floor = yes } multiply = 100 }
aroai_building_type_140_collected_data_2 = { value = var:aroai_building_type_140_collected_data
subtract = { value = var:aroai_building_type_140_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_140_collected_data_3 = { value = var:aroai_building_type_140_collected_data
subtract = { value = var:aroai_building_type_140_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_140_collected_data_4 = { value = var:aroai_building_type_140_collected_data
subtract = { value = var:aroai_building_type_140_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_140_collected_data_5 = { value = var:aroai_building_type_140_collected_data
divide = 10000000 floor = yes }
aroai_building_type_140_collected_data_average_of_1_and_2 = { value = aroai_building_type_140_collected_data_1
add = aroai_building_type_140_collected_data_2 divide = 2 floor = yes }
aroai_building_type_141_collected_data_1 = { value = var:aroai_building_type_141_collected_data
subtract = { value = var:aroai_building_type_141_collected_data floor = yes } multiply = 100 }
aroai_building_type_141_collected_data_2 = { value = var:aroai_building_type_141_collected_data
subtract = { value = var:aroai_building_type_141_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_141_collected_data_3 = { value = var:aroai_building_type_141_collected_data
subtract = { value = var:aroai_building_type_141_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_141_collected_data_4 = { value = var:aroai_building_type_141_collected_data
subtract = { value = var:aroai_building_type_141_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_141_collected_data_5 = { value = var:aroai_building_type_141_collected_data
divide = 10000000 floor = yes }
aroai_building_type_141_collected_data_average_of_1_and_2 = { value = aroai_building_type_141_collected_data_1
add = aroai_building_type_141_collected_data_2 divide = 2 floor = yes }
aroai_building_type_142_collected_data_1 = { value = var:aroai_building_type_142_collected_data
subtract = { value = var:aroai_building_type_142_collected_data floor = yes } multiply = 100 }
aroai_building_type_142_collected_data_2 = { value = var:aroai_building_type_142_collected_data
subtract = { value = var:aroai_building_type_142_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_142_collected_data_3 = { value = var:aroai_building_type_142_collected_data
subtract = { value = var:aroai_building_type_142_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_142_collected_data_4 = { value = var:aroai_building_type_142_collected_data
subtract = { value = var:aroai_building_type_142_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_142_collected_data_5 = { value = var:aroai_building_type_142_collected_data
divide = 10000000 floor = yes }
aroai_building_type_142_collected_data_average_of_1_and_2 = { value = aroai_building_type_142_collected_data_1
add = aroai_building_type_142_collected_data_2 divide = 2 floor = yes }
aroai_building_type_143_collected_data_1 = { value = var:aroai_building_type_143_collected_data
subtract = { value = var:aroai_building_type_143_collected_data floor = yes } multiply = 100 }
aroai_building_type_143_collected_data_2 = { value = var:aroai_building_type_143_collected_data
subtract = { value = var:aroai_building_type_143_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_143_collected_data_3 = { value = var:aroai_building_type_143_collected_data
subtract = { value = var:aroai_building_type_143_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_143_collected_data_4 = { value = var:aroai_building_type_143_collected_data
subtract = { value = var:aroai_building_type_143_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_143_collected_data_5 = { value = var:aroai_building_type_143_collected_data
divide = 10000000 floor = yes }
aroai_building_type_143_collected_data_average_of_1_and_2 = { value = aroai_building_type_143_collected_data_1
add = aroai_building_type_143_collected_data_2 divide = 2 floor = yes }
aroai_building_type_144_collected_data_1 = { value = var:aroai_building_type_144_collected_data
subtract = { value = var:aroai_building_type_144_collected_data floor = yes } multiply = 100 }
aroai_building_type_144_collected_data_2 = { value = var:aroai_building_type_144_collected_data
subtract = { value = var:aroai_building_type_144_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_144_collected_data_3 = { value = var:aroai_building_type_144_collected_data
subtract = { value = var:aroai_building_type_144_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_144_collected_data_4 = { value = var:aroai_building_type_144_collected_data
subtract = { value = var:aroai_building_type_144_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_144_collected_data_5 = { value = var:aroai_building_type_144_collected_data
divide = 10000000 floor = yes }
aroai_building_type_144_collected_data_average_of_1_and_2 = { value = aroai_building_type_144_collected_data_1
add = aroai_building_type_144_collected_data_2 divide = 2 floor = yes }
aroai_building_type_145_collected_data_1 = { value = var:aroai_building_type_145_collected_data
subtract = { value = var:aroai_building_type_145_collected_data floor = yes } multiply = 100 }
aroai_building_type_145_collected_data_2 = { value = var:aroai_building_type_145_collected_data
subtract = { value = var:aroai_building_type_145_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_145_collected_data_3 = { value = var:aroai_building_type_145_collected_data
subtract = { value = var:aroai_building_type_145_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_145_collected_data_4 = { value = var:aroai_building_type_145_collected_data
subtract = { value = var:aroai_building_type_145_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_145_collected_data_5 = { value = var:aroai_building_type_145_collected_data
divide = 10000000 floor = yes }
aroai_building_type_145_collected_data_average_of_1_and_2 = { value = aroai_building_type_145_collected_data_1
add = aroai_building_type_145_collected_data_2 divide = 2 floor = yes }
aroai_building_type_146_collected_data_1 = { value = var:aroai_building_type_146_collected_data
subtract = { value = var:aroai_building_type_146_collected_data floor = yes } multiply = 100 }
aroai_building_type_146_collected_data_2 = { value = var:aroai_building_type_146_collected_data
subtract = { value = var:aroai_building_type_146_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_146_collected_data_3 = { value = var:aroai_building_type_146_collected_data
subtract = { value = var:aroai_building_type_146_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_146_collected_data_4 = { value = var:aroai_building_type_146_collected_data
subtract = { value = var:aroai_building_type_146_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_146_collected_data_5 = { value = var:aroai_building_type_146_collected_data
divide = 10000000 floor = yes }
aroai_building_type_146_collected_data_average_of_1_and_2 = { value = aroai_building_type_146_collected_data_1
add = aroai_building_type_146_collected_data_2 divide = 2 floor = yes }
aroai_building_type_147_collected_data_1 = { value = var:aroai_building_type_147_collected_data
subtract = { value = var:aroai_building_type_147_collected_data floor = yes } multiply = 100 }
aroai_building_type_147_collected_data_2 = { value = var:aroai_building_type_147_collected_data
subtract = { value = var:aroai_building_type_147_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_147_collected_data_3 = { value = var:aroai_building_type_147_collected_data
subtract = { value = var:aroai_building_type_147_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_147_collected_data_4 = { value = var:aroai_building_type_147_collected_data
subtract = { value = var:aroai_building_type_147_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_147_collected_data_5 = { value = var:aroai_building_type_147_collected_data
divide = 10000000 floor = yes }
aroai_building_type_147_collected_data_average_of_1_and_2 = { value = aroai_building_type_147_collected_data_1
add = aroai_building_type_147_collected_data_2 divide = 2 floor = yes }
aroai_building_type_148_collected_data_1 = { value = var:aroai_building_type_148_collected_data
subtract = { value = var:aroai_building_type_148_collected_data floor = yes } multiply = 100 }
aroai_building_type_148_collected_data_2 = { value = var:aroai_building_type_148_collected_data
subtract = { value = var:aroai_building_type_148_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_148_collected_data_3 = { value = var:aroai_building_type_148_collected_data
subtract = { value = var:aroai_building_type_148_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_148_collected_data_4 = { value = var:aroai_building_type_148_collected_data
subtract = { value = var:aroai_building_type_148_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_148_collected_data_5 = { value = var:aroai_building_type_148_collected_data
divide = 10000000 floor = yes }
aroai_building_type_148_collected_data_average_of_1_and_2 = { value = aroai_building_type_148_collected_data_1
add = aroai_building_type_148_collected_data_2 divide = 2 floor = yes }
aroai_building_type_149_collected_data_1 = { value = var:aroai_building_type_149_collected_data
subtract = { value = var:aroai_building_type_149_collected_data floor = yes } multiply = 100 }
aroai_building_type_149_collected_data_2 = { value = var:aroai_building_type_149_collected_data
subtract = { value = var:aroai_building_type_149_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_149_collected_data_3 = { value = var:aroai_building_type_149_collected_data
subtract = { value = var:aroai_building_type_149_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_149_collected_data_4 = { value = var:aroai_building_type_149_collected_data
subtract = { value = var:aroai_building_type_149_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_149_collected_data_5 = { value = var:aroai_building_type_149_collected_data
divide = 10000000 floor = yes }
aroai_building_type_149_collected_data_average_of_1_and_2 = { value = aroai_building_type_149_collected_data_1
add = aroai_building_type_149_collected_data_2 divide = 2 floor = yes }
aroai_building_type_150_collected_data_1 = { value = var:aroai_building_type_150_collected_data
subtract = { value = var:aroai_building_type_150_collected_data floor = yes } multiply = 100 }
aroai_building_type_150_collected_data_2 = { value = var:aroai_building_type_150_collected_data
subtract = { value = var:aroai_building_type_150_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_150_collected_data_3 = { value = var:aroai_building_type_150_collected_data
subtract = { value = var:aroai_building_type_150_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_150_collected_data_4 = { value = var:aroai_building_type_150_collected_data
subtract = { value = var:aroai_building_type_150_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_150_collected_data_5 = { value = var:aroai_building_type_150_collected_data
divide = 10000000 floor = yes }
aroai_building_type_150_collected_data_average_of_1_and_2 = { value = aroai_building_type_150_collected_data_1
add = aroai_building_type_150_collected_data_2 divide = 2 floor = yes }
aroai_building_type_151_collected_data_1 = { value = var:aroai_building_type_151_collected_data
subtract = { value = var:aroai_building_type_151_collected_data floor = yes } multiply = 100 }
aroai_building_type_151_collected_data_2 = { value = var:aroai_building_type_151_collected_data
subtract = { value = var:aroai_building_type_151_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_151_collected_data_3 = { value = var:aroai_building_type_151_collected_data
subtract = { value = var:aroai_building_type_151_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_151_collected_data_4 = { value = var:aroai_building_type_151_collected_data
subtract = { value = var:aroai_building_type_151_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_151_collected_data_5 = { value = var:aroai_building_type_151_collected_data
divide = 10000000 floor = yes }
aroai_building_type_151_collected_data_average_of_1_and_2 = { value = aroai_building_type_151_collected_data_1
add = aroai_building_type_151_collected_data_2 divide = 2 floor = yes }
aroai_building_type_152_collected_data_1 = { value = var:aroai_building_type_152_collected_data
subtract = { value = var:aroai_building_type_152_collected_data floor = yes } multiply = 100 }
aroai_building_type_152_collected_data_2 = { value = var:aroai_building_type_152_collected_data
subtract = { value = var:aroai_building_type_152_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_152_collected_data_3 = { value = var:aroai_building_type_152_collected_data
subtract = { value = var:aroai_building_type_152_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_152_collected_data_4 = { value = var:aroai_building_type_152_collected_data
subtract = { value = var:aroai_building_type_152_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_152_collected_data_5 = { value = var:aroai_building_type_152_collected_data
divide = 10000000 floor = yes }
aroai_building_type_152_collected_data_average_of_1_and_2 = { value = aroai_building_type_152_collected_data_1
add = aroai_building_type_152_collected_data_2 divide = 2 floor = yes }
aroai_building_type_153_collected_data_1 = { value = var:aroai_building_type_153_collected_data
subtract = { value = var:aroai_building_type_153_collected_data floor = yes } multiply = 100 }
aroai_building_type_153_collected_data_2 = { value = var:aroai_building_type_153_collected_data
subtract = { value = var:aroai_building_type_153_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_153_collected_data_3 = { value = var:aroai_building_type_153_collected_data
subtract = { value = var:aroai_building_type_153_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_153_collected_data_4 = { value = var:aroai_building_type_153_collected_data
subtract = { value = var:aroai_building_type_153_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_153_collected_data_5 = { value = var:aroai_building_type_153_collected_data
divide = 10000000 floor = yes }
aroai_building_type_153_collected_data_average_of_1_and_2 = { value = aroai_building_type_153_collected_data_1
add = aroai_building_type_153_collected_data_2 divide = 2 floor = yes }
aroai_building_type_154_collected_data_1 = { value = var:aroai_building_type_154_collected_data
subtract = { value = var:aroai_building_type_154_collected_data floor = yes } multiply = 100 }
aroai_building_type_154_collected_data_2 = { value = var:aroai_building_type_154_collected_data
subtract = { value = var:aroai_building_type_154_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_154_collected_data_3 = { value = var:aroai_building_type_154_collected_data
subtract = { value = var:aroai_building_type_154_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_154_collected_data_4 = { value = var:aroai_building_type_154_collected_data
subtract = { value = var:aroai_building_type_154_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_154_collected_data_5 = { value = var:aroai_building_type_154_collected_data
divide = 10000000 floor = yes }
aroai_building_type_154_collected_data_average_of_1_and_2 = { value = aroai_building_type_154_collected_data_1
add = aroai_building_type_154_collected_data_2 divide = 2 floor = yes }
aroai_building_type_155_collected_data_1 = { value = var:aroai_building_type_155_collected_data
subtract = { value = var:aroai_building_type_155_collected_data floor = yes } multiply = 100 }
aroai_building_type_155_collected_data_2 = { value = var:aroai_building_type_155_collected_data
subtract = { value = var:aroai_building_type_155_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_155_collected_data_3 = { value = var:aroai_building_type_155_collected_data
subtract = { value = var:aroai_building_type_155_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_155_collected_data_4 = { value = var:aroai_building_type_155_collected_data
subtract = { value = var:aroai_building_type_155_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_155_collected_data_5 = { value = var:aroai_building_type_155_collected_data
divide = 10000000 floor = yes }
aroai_building_type_155_collected_data_average_of_1_and_2 = { value = aroai_building_type_155_collected_data_1
add = aroai_building_type_155_collected_data_2 divide = 2 floor = yes }
aroai_building_type_156_collected_data_1 = { value = var:aroai_building_type_156_collected_data
subtract = { value = var:aroai_building_type_156_collected_data floor = yes } multiply = 100 }
aroai_building_type_156_collected_data_2 = { value = var:aroai_building_type_156_collected_data
subtract = { value = var:aroai_building_type_156_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_156_collected_data_3 = { value = var:aroai_building_type_156_collected_data
subtract = { value = var:aroai_building_type_156_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_156_collected_data_4 = { value = var:aroai_building_type_156_collected_data
subtract = { value = var:aroai_building_type_156_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_156_collected_data_5 = { value = var:aroai_building_type_156_collected_data
divide = 10000000 floor = yes }
aroai_building_type_156_collected_data_average_of_1_and_2 = { value = aroai_building_type_156_collected_data_1
add = aroai_building_type_156_collected_data_2 divide = 2 floor = yes }
aroai_building_type_157_collected_data_1 = { value = var:aroai_building_type_157_collected_data
subtract = { value = var:aroai_building_type_157_collected_data floor = yes } multiply = 100 }
aroai_building_type_157_collected_data_2 = { value = var:aroai_building_type_157_collected_data
subtract = { value = var:aroai_building_type_157_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_157_collected_data_3 = { value = var:aroai_building_type_157_collected_data
subtract = { value = var:aroai_building_type_157_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_157_collected_data_4 = { value = var:aroai_building_type_157_collected_data
subtract = { value = var:aroai_building_type_157_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_157_collected_data_5 = { value = var:aroai_building_type_157_collected_data
divide = 10000000 floor = yes }
aroai_building_type_157_collected_data_average_of_1_and_2 = { value = aroai_building_type_157_collected_data_1
add = aroai_building_type_157_collected_data_2 divide = 2 floor = yes }
aroai_building_type_158_collected_data_1 = { value = var:aroai_building_type_158_collected_data
subtract = { value = var:aroai_building_type_158_collected_data floor = yes } multiply = 100 }
aroai_building_type_158_collected_data_2 = { value = var:aroai_building_type_158_collected_data
subtract = { value = var:aroai_building_type_158_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_158_collected_data_3 = { value = var:aroai_building_type_158_collected_data
subtract = { value = var:aroai_building_type_158_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_158_collected_data_4 = { value = var:aroai_building_type_158_collected_data
subtract = { value = var:aroai_building_type_158_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_158_collected_data_5 = { value = var:aroai_building_type_158_collected_data
divide = 10000000 floor = yes }
aroai_building_type_158_collected_data_average_of_1_and_2 = { value = aroai_building_type_158_collected_data_1
add = aroai_building_type_158_collected_data_2 divide = 2 floor = yes }
aroai_building_type_159_collected_data_1 = { value = var:aroai_building_type_159_collected_data
subtract = { value = var:aroai_building_type_159_collected_data floor = yes } multiply = 100 }
aroai_building_type_159_collected_data_2 = { value = var:aroai_building_type_159_collected_data
subtract = { value = var:aroai_building_type_159_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_159_collected_data_3 = { value = var:aroai_building_type_159_collected_data
subtract = { value = var:aroai_building_type_159_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_159_collected_data_4 = { value = var:aroai_building_type_159_collected_data
subtract = { value = var:aroai_building_type_159_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_159_collected_data_5 = { value = var:aroai_building_type_159_collected_data
divide = 10000000 floor = yes }
aroai_building_type_159_collected_data_average_of_1_and_2 = { value = aroai_building_type_159_collected_data_1
add = aroai_building_type_159_collected_data_2 divide = 2 floor = yes }
aroai_building_type_160_collected_data_1 = { value = var:aroai_building_type_160_collected_data
subtract = { value = var:aroai_building_type_160_collected_data floor = yes } multiply = 100 }
aroai_building_type_160_collected_data_2 = { value = var:aroai_building_type_160_collected_data
subtract = { value = var:aroai_building_type_160_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_160_collected_data_3 = { value = var:aroai_building_type_160_collected_data
subtract = { value = var:aroai_building_type_160_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_160_collected_data_4 = { value = var:aroai_building_type_160_collected_data
subtract = { value = var:aroai_building_type_160_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_160_collected_data_5 = { value = var:aroai_building_type_160_collected_data
divide = 10000000 floor = yes }
aroai_building_type_160_collected_data_average_of_1_and_2 = { value = aroai_building_type_160_collected_data_1
add = aroai_building_type_160_collected_data_2 divide = 2 floor = yes }
aroai_building_type_161_collected_data_1 = { value = var:aroai_building_type_161_collected_data
subtract = { value = var:aroai_building_type_161_collected_data floor = yes } multiply = 100 }
aroai_building_type_161_collected_data_2 = { value = var:aroai_building_type_161_collected_data
subtract = { value = var:aroai_building_type_161_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_161_collected_data_3 = { value = var:aroai_building_type_161_collected_data
subtract = { value = var:aroai_building_type_161_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_161_collected_data_4 = { value = var:aroai_building_type_161_collected_data
subtract = { value = var:aroai_building_type_161_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_161_collected_data_5 = { value = var:aroai_building_type_161_collected_data
divide = 10000000 floor = yes }
aroai_building_type_161_collected_data_average_of_1_and_2 = { value = aroai_building_type_161_collected_data_1
add = aroai_building_type_161_collected_data_2 divide = 2 floor = yes }
aroai_building_type_162_collected_data_1 = { value = var:aroai_building_type_162_collected_data
subtract = { value = var:aroai_building_type_162_collected_data floor = yes } multiply = 100 }
aroai_building_type_162_collected_data_2 = { value = var:aroai_building_type_162_collected_data
subtract = { value = var:aroai_building_type_162_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_162_collected_data_3 = { value = var:aroai_building_type_162_collected_data
subtract = { value = var:aroai_building_type_162_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_162_collected_data_4 = { value = var:aroai_building_type_162_collected_data
subtract = { value = var:aroai_building_type_162_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_162_collected_data_5 = { value = var:aroai_building_type_162_collected_data
divide = 10000000 floor = yes }
aroai_building_type_162_collected_data_average_of_1_and_2 = { value = aroai_building_type_162_collected_data_1
add = aroai_building_type_162_collected_data_2 divide = 2 floor = yes }
aroai_building_type_163_collected_data_1 = { value = var:aroai_building_type_163_collected_data
subtract = { value = var:aroai_building_type_163_collected_data floor = yes } multiply = 100 }
aroai_building_type_163_collected_data_2 = { value = var:aroai_building_type_163_collected_data
subtract = { value = var:aroai_building_type_163_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_163_collected_data_3 = { value = var:aroai_building_type_163_collected_data
subtract = { value = var:aroai_building_type_163_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_163_collected_data_4 = { value = var:aroai_building_type_163_collected_data
subtract = { value = var:aroai_building_type_163_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_163_collected_data_5 = { value = var:aroai_building_type_163_collected_data
divide = 10000000 floor = yes }
aroai_building_type_163_collected_data_average_of_1_and_2 = { value = aroai_building_type_163_collected_data_1
add = aroai_building_type_163_collected_data_2 divide = 2 floor = yes }
aroai_building_type_164_collected_data_1 = { value = var:aroai_building_type_164_collected_data
subtract = { value = var:aroai_building_type_164_collected_data floor = yes } multiply = 100 }
aroai_building_type_164_collected_data_2 = { value = var:aroai_building_type_164_collected_data
subtract = { value = var:aroai_building_type_164_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_164_collected_data_3 = { value = var:aroai_building_type_164_collected_data
subtract = { value = var:aroai_building_type_164_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_164_collected_data_4 = { value = var:aroai_building_type_164_collected_data
subtract = { value = var:aroai_building_type_164_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_164_collected_data_5 = { value = var:aroai_building_type_164_collected_data
divide = 10000000 floor = yes }
aroai_building_type_164_collected_data_average_of_1_and_2 = { value = aroai_building_type_164_collected_data_1
add = aroai_building_type_164_collected_data_2 divide = 2 floor = yes }
aroai_building_type_165_collected_data_1 = { value = var:aroai_building_type_165_collected_data
subtract = { value = var:aroai_building_type_165_collected_data floor = yes } multiply = 100 }
aroai_building_type_165_collected_data_2 = { value = var:aroai_building_type_165_collected_data
subtract = { value = var:aroai_building_type_165_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_165_collected_data_3 = { value = var:aroai_building_type_165_collected_data
subtract = { value = var:aroai_building_type_165_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_165_collected_data_4 = { value = var:aroai_building_type_165_collected_data
subtract = { value = var:aroai_building_type_165_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_165_collected_data_5 = { value = var:aroai_building_type_165_collected_data
divide = 10000000 floor = yes }
aroai_building_type_165_collected_data_average_of_1_and_2 = { value = aroai_building_type_165_collected_data_1
add = aroai_building_type_165_collected_data_2 divide = 2 floor = yes }
aroai_building_type_166_collected_data_1 = { value = var:aroai_building_type_166_collected_data
subtract = { value = var:aroai_building_type_166_collected_data floor = yes } multiply = 100 }
aroai_building_type_166_collected_data_2 = { value = var:aroai_building_type_166_collected_data
subtract = { value = var:aroai_building_type_166_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_166_collected_data_3 = { value = var:aroai_building_type_166_collected_data
subtract = { value = var:aroai_building_type_166_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_166_collected_data_4 = { value = var:aroai_building_type_166_collected_data
subtract = { value = var:aroai_building_type_166_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_166_collected_data_5 = { value = var:aroai_building_type_166_collected_data
divide = 10000000 floor = yes }
aroai_building_type_166_collected_data_average_of_1_and_2 = { value = aroai_building_type_166_collected_data_1
add = aroai_building_type_166_collected_data_2 divide = 2 floor = yes }
aroai_building_type_167_collected_data_1 = { value = var:aroai_building_type_167_collected_data
subtract = { value = var:aroai_building_type_167_collected_data floor = yes } multiply = 100 }
aroai_building_type_167_collected_data_2 = { value = var:aroai_building_type_167_collected_data
subtract = { value = var:aroai_building_type_167_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_167_collected_data_3 = { value = var:aroai_building_type_167_collected_data
subtract = { value = var:aroai_building_type_167_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_167_collected_data_4 = { value = var:aroai_building_type_167_collected_data
subtract = { value = var:aroai_building_type_167_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_167_collected_data_5 = { value = var:aroai_building_type_167_collected_data
divide = 10000000 floor = yes }
aroai_building_type_167_collected_data_average_of_1_and_2 = { value = aroai_building_type_167_collected_data_1
add = aroai_building_type_167_collected_data_2 divide = 2 floor = yes }
aroai_building_type_168_collected_data_1 = { value = var:aroai_building_type_168_collected_data
subtract = { value = var:aroai_building_type_168_collected_data floor = yes } multiply = 100 }
aroai_building_type_168_collected_data_2 = { value = var:aroai_building_type_168_collected_data
subtract = { value = var:aroai_building_type_168_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_168_collected_data_3 = { value = var:aroai_building_type_168_collected_data
subtract = { value = var:aroai_building_type_168_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_168_collected_data_4 = { value = var:aroai_building_type_168_collected_data
subtract = { value = var:aroai_building_type_168_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_168_collected_data_5 = { value = var:aroai_building_type_168_collected_data
divide = 10000000 floor = yes }
aroai_building_type_168_collected_data_average_of_1_and_2 = { value = aroai_building_type_168_collected_data_1
add = aroai_building_type_168_collected_data_2 divide = 2 floor = yes }
aroai_building_type_169_collected_data_1 = { value = var:aroai_building_type_169_collected_data
subtract = { value = var:aroai_building_type_169_collected_data floor = yes } multiply = 100 }
aroai_building_type_169_collected_data_2 = { value = var:aroai_building_type_169_collected_data
subtract = { value = var:aroai_building_type_169_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_169_collected_data_3 = { value = var:aroai_building_type_169_collected_data
subtract = { value = var:aroai_building_type_169_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_169_collected_data_4 = { value = var:aroai_building_type_169_collected_data
subtract = { value = var:aroai_building_type_169_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_169_collected_data_5 = { value = var:aroai_building_type_169_collected_data
divide = 10000000 floor = yes }
aroai_building_type_169_collected_data_average_of_1_and_2 = { value = aroai_building_type_169_collected_data_1
add = aroai_building_type_169_collected_data_2 divide = 2 floor = yes }
aroai_building_type_170_collected_data_1 = { value = var:aroai_building_type_170_collected_data
subtract = { value = var:aroai_building_type_170_collected_data floor = yes } multiply = 100 }
aroai_building_type_170_collected_data_2 = { value = var:aroai_building_type_170_collected_data
subtract = { value = var:aroai_building_type_170_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_170_collected_data_3 = { value = var:aroai_building_type_170_collected_data
subtract = { value = var:aroai_building_type_170_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_170_collected_data_4 = { value = var:aroai_building_type_170_collected_data
subtract = { value = var:aroai_building_type_170_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_170_collected_data_5 = { value = var:aroai_building_type_170_collected_data
divide = 10000000 floor = yes }
aroai_building_type_170_collected_data_average_of_1_and_2 = { value = aroai_building_type_170_collected_data_1
add = aroai_building_type_170_collected_data_2 divide = 2 floor = yes }
aroai_building_type_171_collected_data_1 = { value = var:aroai_building_type_171_collected_data
subtract = { value = var:aroai_building_type_171_collected_data floor = yes } multiply = 100 }
aroai_building_type_171_collected_data_2 = { value = var:aroai_building_type_171_collected_data
subtract = { value = var:aroai_building_type_171_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_171_collected_data_3 = { value = var:aroai_building_type_171_collected_data
subtract = { value = var:aroai_building_type_171_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_171_collected_data_4 = { value = var:aroai_building_type_171_collected_data
subtract = { value = var:aroai_building_type_171_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_171_collected_data_5 = { value = var:aroai_building_type_171_collected_data
divide = 10000000 floor = yes }
aroai_building_type_171_collected_data_average_of_1_and_2 = { value = aroai_building_type_171_collected_data_1
add = aroai_building_type_171_collected_data_2 divide = 2 floor = yes }
aroai_building_type_172_collected_data_1 = { value = var:aroai_building_type_172_collected_data
subtract = { value = var:aroai_building_type_172_collected_data floor = yes } multiply = 100 }
aroai_building_type_172_collected_data_2 = { value = var:aroai_building_type_172_collected_data
subtract = { value = var:aroai_building_type_172_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_172_collected_data_3 = { value = var:aroai_building_type_172_collected_data
subtract = { value = var:aroai_building_type_172_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_172_collected_data_4 = { value = var:aroai_building_type_172_collected_data
subtract = { value = var:aroai_building_type_172_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_172_collected_data_5 = { value = var:aroai_building_type_172_collected_data
divide = 10000000 floor = yes }
aroai_building_type_172_collected_data_average_of_1_and_2 = { value = aroai_building_type_172_collected_data_1
add = aroai_building_type_172_collected_data_2 divide = 2 floor = yes }
aroai_building_type_173_collected_data_1 = { value = var:aroai_building_type_173_collected_data
subtract = { value = var:aroai_building_type_173_collected_data floor = yes } multiply = 100 }
aroai_building_type_173_collected_data_2 = { value = var:aroai_building_type_173_collected_data
subtract = { value = var:aroai_building_type_173_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_173_collected_data_3 = { value = var:aroai_building_type_173_collected_data
subtract = { value = var:aroai_building_type_173_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_173_collected_data_4 = { value = var:aroai_building_type_173_collected_data
subtract = { value = var:aroai_building_type_173_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_173_collected_data_5 = { value = var:aroai_building_type_173_collected_data
divide = 10000000 floor = yes }
aroai_building_type_173_collected_data_average_of_1_and_2 = { value = aroai_building_type_173_collected_data_1
add = aroai_building_type_173_collected_data_2 divide = 2 floor = yes }
aroai_building_type_174_collected_data_1 = { value = var:aroai_building_type_174_collected_data
subtract = { value = var:aroai_building_type_174_collected_data floor = yes } multiply = 100 }
aroai_building_type_174_collected_data_2 = { value = var:aroai_building_type_174_collected_data
subtract = { value = var:aroai_building_type_174_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_174_collected_data_3 = { value = var:aroai_building_type_174_collected_data
subtract = { value = var:aroai_building_type_174_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_174_collected_data_4 = { value = var:aroai_building_type_174_collected_data
subtract = { value = var:aroai_building_type_174_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_174_collected_data_5 = { value = var:aroai_building_type_174_collected_data
divide = 10000000 floor = yes }
aroai_building_type_174_collected_data_average_of_1_and_2 = { value = aroai_building_type_174_collected_data_1
add = aroai_building_type_174_collected_data_2 divide = 2 floor = yes }
aroai_building_type_175_collected_data_1 = { value = var:aroai_building_type_175_collected_data
subtract = { value = var:aroai_building_type_175_collected_data floor = yes } multiply = 100 }
aroai_building_type_175_collected_data_2 = { value = var:aroai_building_type_175_collected_data
subtract = { value = var:aroai_building_type_175_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_175_collected_data_3 = { value = var:aroai_building_type_175_collected_data
subtract = { value = var:aroai_building_type_175_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_175_collected_data_4 = { value = var:aroai_building_type_175_collected_data
subtract = { value = var:aroai_building_type_175_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_175_collected_data_5 = { value = var:aroai_building_type_175_collected_data
divide = 10000000 floor = yes }
aroai_building_type_175_collected_data_average_of_1_and_2 = { value = aroai_building_type_175_collected_data_1
add = aroai_building_type_175_collected_data_2 divide = 2 floor = yes }
aroai_building_type_176_collected_data_1 = { value = var:aroai_building_type_176_collected_data
subtract = { value = var:aroai_building_type_176_collected_data floor = yes } multiply = 100 }
aroai_building_type_176_collected_data_2 = { value = var:aroai_building_type_176_collected_data
subtract = { value = var:aroai_building_type_176_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_176_collected_data_3 = { value = var:aroai_building_type_176_collected_data
subtract = { value = var:aroai_building_type_176_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_176_collected_data_4 = { value = var:aroai_building_type_176_collected_data
subtract = { value = var:aroai_building_type_176_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_176_collected_data_5 = { value = var:aroai_building_type_176_collected_data
divide = 10000000 floor = yes }
aroai_building_type_176_collected_data_average_of_1_and_2 = { value = aroai_building_type_176_collected_data_1
add = aroai_building_type_176_collected_data_2 divide = 2 floor = yes }
aroai_building_type_177_collected_data_1 = { value = var:aroai_building_type_177_collected_data
subtract = { value = var:aroai_building_type_177_collected_data floor = yes } multiply = 100 }
aroai_building_type_177_collected_data_2 = { value = var:aroai_building_type_177_collected_data
subtract = { value = var:aroai_building_type_177_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_177_collected_data_3 = { value = var:aroai_building_type_177_collected_data
subtract = { value = var:aroai_building_type_177_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_177_collected_data_4 = { value = var:aroai_building_type_177_collected_data
subtract = { value = var:aroai_building_type_177_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_177_collected_data_5 = { value = var:aroai_building_type_177_collected_data
divide = 10000000 floor = yes }
aroai_building_type_177_collected_data_average_of_1_and_2 = { value = aroai_building_type_177_collected_data_1
add = aroai_building_type_177_collected_data_2 divide = 2 floor = yes }
aroai_building_type_178_collected_data_1 = { value = var:aroai_building_type_178_collected_data
subtract = { value = var:aroai_building_type_178_collected_data floor = yes } multiply = 100 }
aroai_building_type_178_collected_data_2 = { value = var:aroai_building_type_178_collected_data
subtract = { value = var:aroai_building_type_178_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_178_collected_data_3 = { value = var:aroai_building_type_178_collected_data
subtract = { value = var:aroai_building_type_178_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_178_collected_data_4 = { value = var:aroai_building_type_178_collected_data
subtract = { value = var:aroai_building_type_178_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_178_collected_data_5 = { value = var:aroai_building_type_178_collected_data
divide = 10000000 floor = yes }
aroai_building_type_178_collected_data_average_of_1_and_2 = { value = aroai_building_type_178_collected_data_1
add = aroai_building_type_178_collected_data_2 divide = 2 floor = yes }
aroai_building_type_179_collected_data_1 = { value = var:aroai_building_type_179_collected_data
subtract = { value = var:aroai_building_type_179_collected_data floor = yes } multiply = 100 }
aroai_building_type_179_collected_data_2 = { value = var:aroai_building_type_179_collected_data
subtract = { value = var:aroai_building_type_179_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_179_collected_data_3 = { value = var:aroai_building_type_179_collected_data
subtract = { value = var:aroai_building_type_179_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_179_collected_data_4 = { value = var:aroai_building_type_179_collected_data
subtract = { value = var:aroai_building_type_179_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_179_collected_data_5 = { value = var:aroai_building_type_179_collected_data
divide = 10000000 floor = yes }
aroai_building_type_179_collected_data_average_of_1_and_2 = { value = aroai_building_type_179_collected_data_1
add = aroai_building_type_179_collected_data_2 divide = 2 floor = yes }
aroai_building_type_180_collected_data_1 = { value = var:aroai_building_type_180_collected_data
subtract = { value = var:aroai_building_type_180_collected_data floor = yes } multiply = 100 }
aroai_building_type_180_collected_data_2 = { value = var:aroai_building_type_180_collected_data
subtract = { value = var:aroai_building_type_180_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_180_collected_data_3 = { value = var:aroai_building_type_180_collected_data
subtract = { value = var:aroai_building_type_180_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_180_collected_data_4 = { value = var:aroai_building_type_180_collected_data
subtract = { value = var:aroai_building_type_180_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_180_collected_data_5 = { value = var:aroai_building_type_180_collected_data
divide = 10000000 floor = yes }
aroai_building_type_180_collected_data_average_of_1_and_2 = { value = aroai_building_type_180_collected_data_1
add = aroai_building_type_180_collected_data_2 divide = 2 floor = yes }
aroai_building_type_181_collected_data_1 = { value = var:aroai_building_type_181_collected_data
subtract = { value = var:aroai_building_type_181_collected_data floor = yes } multiply = 100 }
aroai_building_type_181_collected_data_2 = { value = var:aroai_building_type_181_collected_data
subtract = { value = var:aroai_building_type_181_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_181_collected_data_3 = { value = var:aroai_building_type_181_collected_data
subtract = { value = var:aroai_building_type_181_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_181_collected_data_4 = { value = var:aroai_building_type_181_collected_data
subtract = { value = var:aroai_building_type_181_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_181_collected_data_5 = { value = var:aroai_building_type_181_collected_data
divide = 10000000 floor = yes }
aroai_building_type_181_collected_data_average_of_1_and_2 = { value = aroai_building_type_181_collected_data_1
add = aroai_building_type_181_collected_data_2 divide = 2 floor = yes }
aroai_building_type_182_collected_data_1 = { value = var:aroai_building_type_182_collected_data
subtract = { value = var:aroai_building_type_182_collected_data floor = yes } multiply = 100 }
aroai_building_type_182_collected_data_2 = { value = var:aroai_building_type_182_collected_data
subtract = { value = var:aroai_building_type_182_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_182_collected_data_3 = { value = var:aroai_building_type_182_collected_data
subtract = { value = var:aroai_building_type_182_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_182_collected_data_4 = { value = var:aroai_building_type_182_collected_data
subtract = { value = var:aroai_building_type_182_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_182_collected_data_5 = { value = var:aroai_building_type_182_collected_data
divide = 10000000 floor = yes }
aroai_building_type_182_collected_data_average_of_1_and_2 = { value = aroai_building_type_182_collected_data_1
add = aroai_building_type_182_collected_data_2 divide = 2 floor = yes }
aroai_building_type_183_collected_data_1 = { value = var:aroai_building_type_183_collected_data
subtract = { value = var:aroai_building_type_183_collected_data floor = yes } multiply = 100 }
aroai_building_type_183_collected_data_2 = { value = var:aroai_building_type_183_collected_data
subtract = { value = var:aroai_building_type_183_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_183_collected_data_3 = { value = var:aroai_building_type_183_collected_data
subtract = { value = var:aroai_building_type_183_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_183_collected_data_4 = { value = var:aroai_building_type_183_collected_data
subtract = { value = var:aroai_building_type_183_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_183_collected_data_5 = { value = var:aroai_building_type_183_collected_data
divide = 10000000 floor = yes }
aroai_building_type_183_collected_data_average_of_1_and_2 = { value = aroai_building_type_183_collected_data_1
add = aroai_building_type_183_collected_data_2 divide = 2 floor = yes }
aroai_building_type_184_collected_data_1 = { value = var:aroai_building_type_184_collected_data
subtract = { value = var:aroai_building_type_184_collected_data floor = yes } multiply = 100 }
aroai_building_type_184_collected_data_2 = { value = var:aroai_building_type_184_collected_data
subtract = { value = var:aroai_building_type_184_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_184_collected_data_3 = { value = var:aroai_building_type_184_collected_data
subtract = { value = var:aroai_building_type_184_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_184_collected_data_4 = { value = var:aroai_building_type_184_collected_data
subtract = { value = var:aroai_building_type_184_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_184_collected_data_5 = { value = var:aroai_building_type_184_collected_data
divide = 10000000 floor = yes }
aroai_building_type_184_collected_data_average_of_1_and_2 = { value = aroai_building_type_184_collected_data_1
add = aroai_building_type_184_collected_data_2 divide = 2 floor = yes }
aroai_building_type_185_collected_data_1 = { value = var:aroai_building_type_185_collected_data
subtract = { value = var:aroai_building_type_185_collected_data floor = yes } multiply = 100 }
aroai_building_type_185_collected_data_2 = { value = var:aroai_building_type_185_collected_data
subtract = { value = var:aroai_building_type_185_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_185_collected_data_3 = { value = var:aroai_building_type_185_collected_data
subtract = { value = var:aroai_building_type_185_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_185_collected_data_4 = { value = var:aroai_building_type_185_collected_data
subtract = { value = var:aroai_building_type_185_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_185_collected_data_5 = { value = var:aroai_building_type_185_collected_data
divide = 10000000 floor = yes }
aroai_building_type_185_collected_data_average_of_1_and_2 = { value = aroai_building_type_185_collected_data_1
add = aroai_building_type_185_collected_data_2 divide = 2 floor = yes }
aroai_building_type_186_collected_data_1 = { value = var:aroai_building_type_186_collected_data
subtract = { value = var:aroai_building_type_186_collected_data floor = yes } multiply = 100 }
aroai_building_type_186_collected_data_2 = { value = var:aroai_building_type_186_collected_data
subtract = { value = var:aroai_building_type_186_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_186_collected_data_3 = { value = var:aroai_building_type_186_collected_data
subtract = { value = var:aroai_building_type_186_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_186_collected_data_4 = { value = var:aroai_building_type_186_collected_data
subtract = { value = var:aroai_building_type_186_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_186_collected_data_5 = { value = var:aroai_building_type_186_collected_data
divide = 10000000 floor = yes }
aroai_building_type_186_collected_data_average_of_1_and_2 = { value = aroai_building_type_186_collected_data_1
add = aroai_building_type_186_collected_data_2 divide = 2 floor = yes }
aroai_building_type_187_collected_data_1 = { value = var:aroai_building_type_187_collected_data
subtract = { value = var:aroai_building_type_187_collected_data floor = yes } multiply = 100 }
aroai_building_type_187_collected_data_2 = { value = var:aroai_building_type_187_collected_data
subtract = { value = var:aroai_building_type_187_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_187_collected_data_3 = { value = var:aroai_building_type_187_collected_data
subtract = { value = var:aroai_building_type_187_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_187_collected_data_4 = { value = var:aroai_building_type_187_collected_data
subtract = { value = var:aroai_building_type_187_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_187_collected_data_5 = { value = var:aroai_building_type_187_collected_data
divide = 10000000 floor = yes }
aroai_building_type_187_collected_data_average_of_1_and_2 = { value = aroai_building_type_187_collected_data_1
add = aroai_building_type_187_collected_data_2 divide = 2 floor = yes }
aroai_building_type_188_collected_data_1 = { value = var:aroai_building_type_188_collected_data
subtract = { value = var:aroai_building_type_188_collected_data floor = yes } multiply = 100 }
aroai_building_type_188_collected_data_2 = { value = var:aroai_building_type_188_collected_data
subtract = { value = var:aroai_building_type_188_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_188_collected_data_3 = { value = var:aroai_building_type_188_collected_data
subtract = { value = var:aroai_building_type_188_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_188_collected_data_4 = { value = var:aroai_building_type_188_collected_data
subtract = { value = var:aroai_building_type_188_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_188_collected_data_5 = { value = var:aroai_building_type_188_collected_data
divide = 10000000 floor = yes }
aroai_building_type_188_collected_data_average_of_1_and_2 = { value = aroai_building_type_188_collected_data_1
add = aroai_building_type_188_collected_data_2 divide = 2 floor = yes }
aroai_building_type_189_collected_data_1 = { value = var:aroai_building_type_189_collected_data
subtract = { value = var:aroai_building_type_189_collected_data floor = yes } multiply = 100 }
aroai_building_type_189_collected_data_2 = { value = var:aroai_building_type_189_collected_data
subtract = { value = var:aroai_building_type_189_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_189_collected_data_3 = { value = var:aroai_building_type_189_collected_data
subtract = { value = var:aroai_building_type_189_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_189_collected_data_4 = { value = var:aroai_building_type_189_collected_data
subtract = { value = var:aroai_building_type_189_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_189_collected_data_5 = { value = var:aroai_building_type_189_collected_data
divide = 10000000 floor = yes }
aroai_building_type_189_collected_data_average_of_1_and_2 = { value = aroai_building_type_189_collected_data_1
add = aroai_building_type_189_collected_data_2 divide = 2 floor = yes }
aroai_building_type_190_collected_data_1 = { value = var:aroai_building_type_190_collected_data
subtract = { value = var:aroai_building_type_190_collected_data floor = yes } multiply = 100 }
aroai_building_type_190_collected_data_2 = { value = var:aroai_building_type_190_collected_data
subtract = { value = var:aroai_building_type_190_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_190_collected_data_3 = { value = var:aroai_building_type_190_collected_data
subtract = { value = var:aroai_building_type_190_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_190_collected_data_4 = { value = var:aroai_building_type_190_collected_data
subtract = { value = var:aroai_building_type_190_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_190_collected_data_5 = { value = var:aroai_building_type_190_collected_data
divide = 10000000 floor = yes }
aroai_building_type_190_collected_data_average_of_1_and_2 = { value = aroai_building_type_190_collected_data_1
add = aroai_building_type_190_collected_data_2 divide = 2 floor = yes }
aroai_building_type_191_collected_data_1 = { value = var:aroai_building_type_191_collected_data
subtract = { value = var:aroai_building_type_191_collected_data floor = yes } multiply = 100 }
aroai_building_type_191_collected_data_2 = { value = var:aroai_building_type_191_collected_data
subtract = { value = var:aroai_building_type_191_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_191_collected_data_3 = { value = var:aroai_building_type_191_collected_data
subtract = { value = var:aroai_building_type_191_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_191_collected_data_4 = { value = var:aroai_building_type_191_collected_data
subtract = { value = var:aroai_building_type_191_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_191_collected_data_5 = { value = var:aroai_building_type_191_collected_data
divide = 10000000 floor = yes }
aroai_building_type_191_collected_data_average_of_1_and_2 = { value = aroai_building_type_191_collected_data_1
add = aroai_building_type_191_collected_data_2 divide = 2 floor = yes }
aroai_building_type_192_collected_data_1 = { value = var:aroai_building_type_192_collected_data
subtract = { value = var:aroai_building_type_192_collected_data floor = yes } multiply = 100 }
aroai_building_type_192_collected_data_2 = { value = var:aroai_building_type_192_collected_data
subtract = { value = var:aroai_building_type_192_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_192_collected_data_3 = { value = var:aroai_building_type_192_collected_data
subtract = { value = var:aroai_building_type_192_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_192_collected_data_4 = { value = var:aroai_building_type_192_collected_data
subtract = { value = var:aroai_building_type_192_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_192_collected_data_5 = { value = var:aroai_building_type_192_collected_data
divide = 10000000 floor = yes }
aroai_building_type_192_collected_data_average_of_1_and_2 = { value = aroai_building_type_192_collected_data_1
add = aroai_building_type_192_collected_data_2 divide = 2 floor = yes }
aroai_building_type_193_collected_data_1 = { value = var:aroai_building_type_193_collected_data
subtract = { value = var:aroai_building_type_193_collected_data floor = yes } multiply = 100 }
aroai_building_type_193_collected_data_2 = { value = var:aroai_building_type_193_collected_data
subtract = { value = var:aroai_building_type_193_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_193_collected_data_3 = { value = var:aroai_building_type_193_collected_data
subtract = { value = var:aroai_building_type_193_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_193_collected_data_4 = { value = var:aroai_building_type_193_collected_data
subtract = { value = var:aroai_building_type_193_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_193_collected_data_5 = { value = var:aroai_building_type_193_collected_data
divide = 10000000 floor = yes }
aroai_building_type_193_collected_data_average_of_1_and_2 = { value = aroai_building_type_193_collected_data_1
add = aroai_building_type_193_collected_data_2 divide = 2 floor = yes }
aroai_building_type_194_collected_data_1 = { value = var:aroai_building_type_194_collected_data
subtract = { value = var:aroai_building_type_194_collected_data floor = yes } multiply = 100 }
aroai_building_type_194_collected_data_2 = { value = var:aroai_building_type_194_collected_data
subtract = { value = var:aroai_building_type_194_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_194_collected_data_3 = { value = var:aroai_building_type_194_collected_data
subtract = { value = var:aroai_building_type_194_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_194_collected_data_4 = { value = var:aroai_building_type_194_collected_data
subtract = { value = var:aroai_building_type_194_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_194_collected_data_5 = { value = var:aroai_building_type_194_collected_data
divide = 10000000 floor = yes }
aroai_building_type_194_collected_data_average_of_1_and_2 = { value = aroai_building_type_194_collected_data_1
add = aroai_building_type_194_collected_data_2 divide = 2 floor = yes }
aroai_building_type_195_collected_data_1 = { value = var:aroai_building_type_195_collected_data
subtract = { value = var:aroai_building_type_195_collected_data floor = yes } multiply = 100 }
aroai_building_type_195_collected_data_2 = { value = var:aroai_building_type_195_collected_data
subtract = { value = var:aroai_building_type_195_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_195_collected_data_3 = { value = var:aroai_building_type_195_collected_data
subtract = { value = var:aroai_building_type_195_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_195_collected_data_4 = { value = var:aroai_building_type_195_collected_data
subtract = { value = var:aroai_building_type_195_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_195_collected_data_5 = { value = var:aroai_building_type_195_collected_data
divide = 10000000 floor = yes }
aroai_building_type_195_collected_data_average_of_1_and_2 = { value = aroai_building_type_195_collected_data_1
add = aroai_building_type_195_collected_data_2 divide = 2 floor = yes }
aroai_building_type_196_collected_data_1 = { value = var:aroai_building_type_196_collected_data
subtract = { value = var:aroai_building_type_196_collected_data floor = yes } multiply = 100 }
aroai_building_type_196_collected_data_2 = { value = var:aroai_building_type_196_collected_data
subtract = { value = var:aroai_building_type_196_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_196_collected_data_3 = { value = var:aroai_building_type_196_collected_data
subtract = { value = var:aroai_building_type_196_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_196_collected_data_4 = { value = var:aroai_building_type_196_collected_data
subtract = { value = var:aroai_building_type_196_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_196_collected_data_5 = { value = var:aroai_building_type_196_collected_data
divide = 10000000 floor = yes }
aroai_building_type_196_collected_data_average_of_1_and_2 = { value = aroai_building_type_196_collected_data_1
add = aroai_building_type_196_collected_data_2 divide = 2 floor = yes }
aroai_building_type_197_collected_data_1 = { value = var:aroai_building_type_197_collected_data
subtract = { value = var:aroai_building_type_197_collected_data floor = yes } multiply = 100 }
aroai_building_type_197_collected_data_2 = { value = var:aroai_building_type_197_collected_data
subtract = { value = var:aroai_building_type_197_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_197_collected_data_3 = { value = var:aroai_building_type_197_collected_data
subtract = { value = var:aroai_building_type_197_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_197_collected_data_4 = { value = var:aroai_building_type_197_collected_data
subtract = { value = var:aroai_building_type_197_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_197_collected_data_5 = { value = var:aroai_building_type_197_collected_data
divide = 10000000 floor = yes }
aroai_building_type_197_collected_data_average_of_1_and_2 = { value = aroai_building_type_197_collected_data_1
add = aroai_building_type_197_collected_data_2 divide = 2 floor = yes }
aroai_building_type_198_collected_data_1 = { value = var:aroai_building_type_198_collected_data
subtract = { value = var:aroai_building_type_198_collected_data floor = yes } multiply = 100 }
aroai_building_type_198_collected_data_2 = { value = var:aroai_building_type_198_collected_data
subtract = { value = var:aroai_building_type_198_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_198_collected_data_3 = { value = var:aroai_building_type_198_collected_data
subtract = { value = var:aroai_building_type_198_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_198_collected_data_4 = { value = var:aroai_building_type_198_collected_data
subtract = { value = var:aroai_building_type_198_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_198_collected_data_5 = { value = var:aroai_building_type_198_collected_data
divide = 10000000 floor = yes }
aroai_building_type_198_collected_data_average_of_1_and_2 = { value = aroai_building_type_198_collected_data_1
add = aroai_building_type_198_collected_data_2 divide = 2 floor = yes }
aroai_building_type_199_collected_data_1 = { value = var:aroai_building_type_199_collected_data
subtract = { value = var:aroai_building_type_199_collected_data floor = yes } multiply = 100 }
aroai_building_type_199_collected_data_2 = { value = var:aroai_building_type_199_collected_data
subtract = { value = var:aroai_building_type_199_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_199_collected_data_3 = { value = var:aroai_building_type_199_collected_data
subtract = { value = var:aroai_building_type_199_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_199_collected_data_4 = { value = var:aroai_building_type_199_collected_data
subtract = { value = var:aroai_building_type_199_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_199_collected_data_5 = { value = var:aroai_building_type_199_collected_data
divide = 10000000 floor = yes }
aroai_building_type_199_collected_data_average_of_1_and_2 = { value = aroai_building_type_199_collected_data_1
add = aroai_building_type_199_collected_data_2 divide = 2 floor = yes }
aroai_building_type_200_collected_data_1 = { value = var:aroai_building_type_200_collected_data
subtract = { value = var:aroai_building_type_200_collected_data floor = yes } multiply = 100 }
aroai_building_type_200_collected_data_2 = { value = var:aroai_building_type_200_collected_data
subtract = { value = var:aroai_building_type_200_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_200_collected_data_3 = { value = var:aroai_building_type_200_collected_data
subtract = { value = var:aroai_building_type_200_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_200_collected_data_4 = { value = var:aroai_building_type_200_collected_data
subtract = { value = var:aroai_building_type_200_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_200_collected_data_5 = { value = var:aroai_building_type_200_collected_data
divide = 10000000 floor = yes }
aroai_building_type_200_collected_data_average_of_1_and_2 = { value = aroai_building_type_200_collected_data_1
add = aroai_building_type_200_collected_data_2 divide = 2 floor = yes }
aroai_building_type_201_collected_data_1 = { value = var:aroai_building_type_201_collected_data
subtract = { value = var:aroai_building_type_201_collected_data floor = yes } multiply = 100 }
aroai_building_type_201_collected_data_2 = { value = var:aroai_building_type_201_collected_data
subtract = { value = var:aroai_building_type_201_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_201_collected_data_3 = { value = var:aroai_building_type_201_collected_data
subtract = { value = var:aroai_building_type_201_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_201_collected_data_4 = { value = var:aroai_building_type_201_collected_data
subtract = { value = var:aroai_building_type_201_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_201_collected_data_5 = { value = var:aroai_building_type_201_collected_data
divide = 10000000 floor = yes }
aroai_building_type_201_collected_data_average_of_1_and_2 = { value = aroai_building_type_201_collected_data_1
add = aroai_building_type_201_collected_data_2 divide = 2 floor = yes }
aroai_building_type_202_collected_data_1 = { value = var:aroai_building_type_202_collected_data
subtract = { value = var:aroai_building_type_202_collected_data floor = yes } multiply = 100 }
aroai_building_type_202_collected_data_2 = { value = var:aroai_building_type_202_collected_data
subtract = { value = var:aroai_building_type_202_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_202_collected_data_3 = { value = var:aroai_building_type_202_collected_data
subtract = { value = var:aroai_building_type_202_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_202_collected_data_4 = { value = var:aroai_building_type_202_collected_data
subtract = { value = var:aroai_building_type_202_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_202_collected_data_5 = { value = var:aroai_building_type_202_collected_data
divide = 10000000 floor = yes }
aroai_building_type_202_collected_data_average_of_1_and_2 = { value = aroai_building_type_202_collected_data_1
add = aroai_building_type_202_collected_data_2 divide = 2 floor = yes }
aroai_building_type_203_collected_data_1 = { value = var:aroai_building_type_203_collected_data
subtract = { value = var:aroai_building_type_203_collected_data floor = yes } multiply = 100 }
aroai_building_type_203_collected_data_2 = { value = var:aroai_building_type_203_collected_data
subtract = { value = var:aroai_building_type_203_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_203_collected_data_3 = { value = var:aroai_building_type_203_collected_data
subtract = { value = var:aroai_building_type_203_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_203_collected_data_4 = { value = var:aroai_building_type_203_collected_data
subtract = { value = var:aroai_building_type_203_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_203_collected_data_5 = { value = var:aroai_building_type_203_collected_data
divide = 10000000 floor = yes }
aroai_building_type_203_collected_data_average_of_1_and_2 = { value = aroai_building_type_203_collected_data_1
add = aroai_building_type_203_collected_data_2 divide = 2 floor = yes }
aroai_building_type_204_collected_data_1 = { value = var:aroai_building_type_204_collected_data
subtract = { value = var:aroai_building_type_204_collected_data floor = yes } multiply = 100 }
aroai_building_type_204_collected_data_2 = { value = var:aroai_building_type_204_collected_data
subtract = { value = var:aroai_building_type_204_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_204_collected_data_3 = { value = var:aroai_building_type_204_collected_data
subtract = { value = var:aroai_building_type_204_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_204_collected_data_4 = { value = var:aroai_building_type_204_collected_data
subtract = { value = var:aroai_building_type_204_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_204_collected_data_5 = { value = var:aroai_building_type_204_collected_data
divide = 10000000 floor = yes }
aroai_building_type_204_collected_data_average_of_1_and_2 = { value = aroai_building_type_204_collected_data_1
add = aroai_building_type_204_collected_data_2 divide = 2 floor = yes }
aroai_building_type_205_collected_data_1 = { value = var:aroai_building_type_205_collected_data
subtract = { value = var:aroai_building_type_205_collected_data floor = yes } multiply = 100 }
aroai_building_type_205_collected_data_2 = { value = var:aroai_building_type_205_collected_data
subtract = { value = var:aroai_building_type_205_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_205_collected_data_3 = { value = var:aroai_building_type_205_collected_data
subtract = { value = var:aroai_building_type_205_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_205_collected_data_4 = { value = var:aroai_building_type_205_collected_data
subtract = { value = var:aroai_building_type_205_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_205_collected_data_5 = { value = var:aroai_building_type_205_collected_data
divide = 10000000 floor = yes }
aroai_building_type_205_collected_data_average_of_1_and_2 = { value = aroai_building_type_205_collected_data_1
add = aroai_building_type_205_collected_data_2 divide = 2 floor = yes }
aroai_building_type_206_collected_data_1 = { value = var:aroai_building_type_206_collected_data
subtract = { value = var:aroai_building_type_206_collected_data floor = yes } multiply = 100 }
aroai_building_type_206_collected_data_2 = { value = var:aroai_building_type_206_collected_data
subtract = { value = var:aroai_building_type_206_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_206_collected_data_3 = { value = var:aroai_building_type_206_collected_data
subtract = { value = var:aroai_building_type_206_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_206_collected_data_4 = { value = var:aroai_building_type_206_collected_data
subtract = { value = var:aroai_building_type_206_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_206_collected_data_5 = { value = var:aroai_building_type_206_collected_data
divide = 10000000 floor = yes }
aroai_building_type_206_collected_data_average_of_1_and_2 = { value = aroai_building_type_206_collected_data_1
add = aroai_building_type_206_collected_data_2 divide = 2 floor = yes }
aroai_building_type_207_collected_data_1 = { value = var:aroai_building_type_207_collected_data
subtract = { value = var:aroai_building_type_207_collected_data floor = yes } multiply = 100 }
aroai_building_type_207_collected_data_2 = { value = var:aroai_building_type_207_collected_data
subtract = { value = var:aroai_building_type_207_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_207_collected_data_3 = { value = var:aroai_building_type_207_collected_data
subtract = { value = var:aroai_building_type_207_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_207_collected_data_4 = { value = var:aroai_building_type_207_collected_data
subtract = { value = var:aroai_building_type_207_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_207_collected_data_5 = { value = var:aroai_building_type_207_collected_data
divide = 10000000 floor = yes }
aroai_building_type_207_collected_data_average_of_1_and_2 = { value = aroai_building_type_207_collected_data_1
add = aroai_building_type_207_collected_data_2 divide = 2 floor = yes }
aroai_building_type_208_collected_data_1 = { value = var:aroai_building_type_208_collected_data
subtract = { value = var:aroai_building_type_208_collected_data floor = yes } multiply = 100 }
aroai_building_type_208_collected_data_2 = { value = var:aroai_building_type_208_collected_data
subtract = { value = var:aroai_building_type_208_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_208_collected_data_3 = { value = var:aroai_building_type_208_collected_data
subtract = { value = var:aroai_building_type_208_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_208_collected_data_4 = { value = var:aroai_building_type_208_collected_data
subtract = { value = var:aroai_building_type_208_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_208_collected_data_5 = { value = var:aroai_building_type_208_collected_data
divide = 10000000 floor = yes }
aroai_building_type_208_collected_data_average_of_1_and_2 = { value = aroai_building_type_208_collected_data_1
add = aroai_building_type_208_collected_data_2 divide = 2 floor = yes }
aroai_building_type_209_collected_data_1 = { value = var:aroai_building_type_209_collected_data
subtract = { value = var:aroai_building_type_209_collected_data floor = yes } multiply = 100 }
aroai_building_type_209_collected_data_2 = { value = var:aroai_building_type_209_collected_data
subtract = { value = var:aroai_building_type_209_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_209_collected_data_3 = { value = var:aroai_building_type_209_collected_data
subtract = { value = var:aroai_building_type_209_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_209_collected_data_4 = { value = var:aroai_building_type_209_collected_data
subtract = { value = var:aroai_building_type_209_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_209_collected_data_5 = { value = var:aroai_building_type_209_collected_data
divide = 10000000 floor = yes }
aroai_building_type_209_collected_data_average_of_1_and_2 = { value = aroai_building_type_209_collected_data_1
add = aroai_building_type_209_collected_data_2 divide = 2 floor = yes }
aroai_building_type_210_collected_data_1 = { value = var:aroai_building_type_210_collected_data
subtract = { value = var:aroai_building_type_210_collected_data floor = yes } multiply = 100 }
aroai_building_type_210_collected_data_2 = { value = var:aroai_building_type_210_collected_data
subtract = { value = var:aroai_building_type_210_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_210_collected_data_3 = { value = var:aroai_building_type_210_collected_data
subtract = { value = var:aroai_building_type_210_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_210_collected_data_4 = { value = var:aroai_building_type_210_collected_data
subtract = { value = var:aroai_building_type_210_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_210_collected_data_5 = { value = var:aroai_building_type_210_collected_data
divide = 10000000 floor = yes }
aroai_building_type_210_collected_data_average_of_1_and_2 = { value = aroai_building_type_210_collected_data_1
add = aroai_building_type_210_collected_data_2 divide = 2 floor = yes }
aroai_building_type_211_collected_data_1 = { value = var:aroai_building_type_211_collected_data
subtract = { value = var:aroai_building_type_211_collected_data floor = yes } multiply = 100 }
aroai_building_type_211_collected_data_2 = { value = var:aroai_building_type_211_collected_data
subtract = { value = var:aroai_building_type_211_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_211_collected_data_3 = { value = var:aroai_building_type_211_collected_data
subtract = { value = var:aroai_building_type_211_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_211_collected_data_4 = { value = var:aroai_building_type_211_collected_data
subtract = { value = var:aroai_building_type_211_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_211_collected_data_5 = { value = var:aroai_building_type_211_collected_data
divide = 10000000 floor = yes }
aroai_building_type_211_collected_data_average_of_1_and_2 = { value = aroai_building_type_211_collected_data_1
add = aroai_building_type_211_collected_data_2 divide = 2 floor = yes }
aroai_building_type_212_collected_data_1 = { value = var:aroai_building_type_212_collected_data
subtract = { value = var:aroai_building_type_212_collected_data floor = yes } multiply = 100 }
aroai_building_type_212_collected_data_2 = { value = var:aroai_building_type_212_collected_data
subtract = { value = var:aroai_building_type_212_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_212_collected_data_3 = { value = var:aroai_building_type_212_collected_data
subtract = { value = var:aroai_building_type_212_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_212_collected_data_4 = { value = var:aroai_building_type_212_collected_data
subtract = { value = var:aroai_building_type_212_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_212_collected_data_5 = { value = var:aroai_building_type_212_collected_data
divide = 10000000 floor = yes }
aroai_building_type_212_collected_data_average_of_1_and_2 = { value = aroai_building_type_212_collected_data_1
add = aroai_building_type_212_collected_data_2 divide = 2 floor = yes }
aroai_building_type_213_collected_data_1 = { value = var:aroai_building_type_213_collected_data
subtract = { value = var:aroai_building_type_213_collected_data floor = yes } multiply = 100 }
aroai_building_type_213_collected_data_2 = { value = var:aroai_building_type_213_collected_data
subtract = { value = var:aroai_building_type_213_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_213_collected_data_3 = { value = var:aroai_building_type_213_collected_data
subtract = { value = var:aroai_building_type_213_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_213_collected_data_4 = { value = var:aroai_building_type_213_collected_data
subtract = { value = var:aroai_building_type_213_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_213_collected_data_5 = { value = var:aroai_building_type_213_collected_data
divide = 10000000 floor = yes }
aroai_building_type_213_collected_data_average_of_1_and_2 = { value = aroai_building_type_213_collected_data_1
add = aroai_building_type_213_collected_data_2 divide = 2 floor = yes }
aroai_building_type_214_collected_data_1 = { value = var:aroai_building_type_214_collected_data
subtract = { value = var:aroai_building_type_214_collected_data floor = yes } multiply = 100 }
aroai_building_type_214_collected_data_2 = { value = var:aroai_building_type_214_collected_data
subtract = { value = var:aroai_building_type_214_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_214_collected_data_3 = { value = var:aroai_building_type_214_collected_data
subtract = { value = var:aroai_building_type_214_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_214_collected_data_4 = { value = var:aroai_building_type_214_collected_data
subtract = { value = var:aroai_building_type_214_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_214_collected_data_5 = { value = var:aroai_building_type_214_collected_data
divide = 10000000 floor = yes }
aroai_building_type_214_collected_data_average_of_1_and_2 = { value = aroai_building_type_214_collected_data_1
add = aroai_building_type_214_collected_data_2 divide = 2 floor = yes }
aroai_building_type_215_collected_data_1 = { value = var:aroai_building_type_215_collected_data
subtract = { value = var:aroai_building_type_215_collected_data floor = yes } multiply = 100 }
aroai_building_type_215_collected_data_2 = { value = var:aroai_building_type_215_collected_data
subtract = { value = var:aroai_building_type_215_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_215_collected_data_3 = { value = var:aroai_building_type_215_collected_data
subtract = { value = var:aroai_building_type_215_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_215_collected_data_4 = { value = var:aroai_building_type_215_collected_data
subtract = { value = var:aroai_building_type_215_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_215_collected_data_5 = { value = var:aroai_building_type_215_collected_data
divide = 10000000 floor = yes }
aroai_building_type_215_collected_data_average_of_1_and_2 = { value = aroai_building_type_215_collected_data_1
add = aroai_building_type_215_collected_data_2 divide = 2 floor = yes }
aroai_building_type_216_collected_data_1 = { value = var:aroai_building_type_216_collected_data
subtract = { value = var:aroai_building_type_216_collected_data floor = yes } multiply = 100 }
aroai_building_type_216_collected_data_2 = { value = var:aroai_building_type_216_collected_data
subtract = { value = var:aroai_building_type_216_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_216_collected_data_3 = { value = var:aroai_building_type_216_collected_data
subtract = { value = var:aroai_building_type_216_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_216_collected_data_4 = { value = var:aroai_building_type_216_collected_data
subtract = { value = var:aroai_building_type_216_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_216_collected_data_5 = { value = var:aroai_building_type_216_collected_data
divide = 10000000 floor = yes }
aroai_building_type_216_collected_data_average_of_1_and_2 = { value = aroai_building_type_216_collected_data_1
add = aroai_building_type_216_collected_data_2 divide = 2 floor = yes }
aroai_building_type_217_collected_data_1 = { value = var:aroai_building_type_217_collected_data
subtract = { value = var:aroai_building_type_217_collected_data floor = yes } multiply = 100 }
aroai_building_type_217_collected_data_2 = { value = var:aroai_building_type_217_collected_data
subtract = { value = var:aroai_building_type_217_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_217_collected_data_3 = { value = var:aroai_building_type_217_collected_data
subtract = { value = var:aroai_building_type_217_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_217_collected_data_4 = { value = var:aroai_building_type_217_collected_data
subtract = { value = var:aroai_building_type_217_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_217_collected_data_5 = { value = var:aroai_building_type_217_collected_data
divide = 10000000 floor = yes }
aroai_building_type_217_collected_data_average_of_1_and_2 = { value = aroai_building_type_217_collected_data_1
add = aroai_building_type_217_collected_data_2 divide = 2 floor = yes }
aroai_building_type_218_collected_data_1 = { value = var:aroai_building_type_218_collected_data
subtract = { value = var:aroai_building_type_218_collected_data floor = yes } multiply = 100 }
aroai_building_type_218_collected_data_2 = { value = var:aroai_building_type_218_collected_data
subtract = { value = var:aroai_building_type_218_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_218_collected_data_3 = { value = var:aroai_building_type_218_collected_data
subtract = { value = var:aroai_building_type_218_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_218_collected_data_4 = { value = var:aroai_building_type_218_collected_data
subtract = { value = var:aroai_building_type_218_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_218_collected_data_5 = { value = var:aroai_building_type_218_collected_data
divide = 10000000 floor = yes }
aroai_building_type_218_collected_data_average_of_1_and_2 = { value = aroai_building_type_218_collected_data_1
add = aroai_building_type_218_collected_data_2 divide = 2 floor = yes }
aroai_building_type_219_collected_data_1 = { value = var:aroai_building_type_219_collected_data
subtract = { value = var:aroai_building_type_219_collected_data floor = yes } multiply = 100 }
aroai_building_type_219_collected_data_2 = { value = var:aroai_building_type_219_collected_data
subtract = { value = var:aroai_building_type_219_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_219_collected_data_3 = { value = var:aroai_building_type_219_collected_data
subtract = { value = var:aroai_building_type_219_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_219_collected_data_4 = { value = var:aroai_building_type_219_collected_data
subtract = { value = var:aroai_building_type_219_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_219_collected_data_5 = { value = var:aroai_building_type_219_collected_data
divide = 10000000 floor = yes }
aroai_building_type_219_collected_data_average_of_1_and_2 = { value = aroai_building_type_219_collected_data_1
add = aroai_building_type_219_collected_data_2 divide = 2 floor = yes }
aroai_building_type_220_collected_data_1 = { value = var:aroai_building_type_220_collected_data
subtract = { value = var:aroai_building_type_220_collected_data floor = yes } multiply = 100 }
aroai_building_type_220_collected_data_2 = { value = var:aroai_building_type_220_collected_data
subtract = { value = var:aroai_building_type_220_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_220_collected_data_3 = { value = var:aroai_building_type_220_collected_data
subtract = { value = var:aroai_building_type_220_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_220_collected_data_4 = { value = var:aroai_building_type_220_collected_data
subtract = { value = var:aroai_building_type_220_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_220_collected_data_5 = { value = var:aroai_building_type_220_collected_data
divide = 10000000 floor = yes }
aroai_building_type_220_collected_data_average_of_1_and_2 = { value = aroai_building_type_220_collected_data_1
add = aroai_building_type_220_collected_data_2 divide = 2 floor = yes }
aroai_building_type_221_collected_data_1 = { value = var:aroai_building_type_221_collected_data
subtract = { value = var:aroai_building_type_221_collected_data floor = yes } multiply = 100 }
aroai_building_type_221_collected_data_2 = { value = var:aroai_building_type_221_collected_data
subtract = { value = var:aroai_building_type_221_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_221_collected_data_3 = { value = var:aroai_building_type_221_collected_data
subtract = { value = var:aroai_building_type_221_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_221_collected_data_4 = { value = var:aroai_building_type_221_collected_data
subtract = { value = var:aroai_building_type_221_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_221_collected_data_5 = { value = var:aroai_building_type_221_collected_data
divide = 10000000 floor = yes }
aroai_building_type_221_collected_data_average_of_1_and_2 = { value = aroai_building_type_221_collected_data_1
add = aroai_building_type_221_collected_data_2 divide = 2 floor = yes }
aroai_building_type_222_collected_data_1 = { value = var:aroai_building_type_222_collected_data
subtract = { value = var:aroai_building_type_222_collected_data floor = yes } multiply = 100 }
aroai_building_type_222_collected_data_2 = { value = var:aroai_building_type_222_collected_data
subtract = { value = var:aroai_building_type_222_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_222_collected_data_3 = { value = var:aroai_building_type_222_collected_data
subtract = { value = var:aroai_building_type_222_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_222_collected_data_4 = { value = var:aroai_building_type_222_collected_data
subtract = { value = var:aroai_building_type_222_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_222_collected_data_5 = { value = var:aroai_building_type_222_collected_data
divide = 10000000 floor = yes }
aroai_building_type_222_collected_data_average_of_1_and_2 = { value = aroai_building_type_222_collected_data_1
add = aroai_building_type_222_collected_data_2 divide = 2 floor = yes }
aroai_building_type_223_collected_data_1 = { value = var:aroai_building_type_223_collected_data
subtract = { value = var:aroai_building_type_223_collected_data floor = yes } multiply = 100 }
aroai_building_type_223_collected_data_2 = { value = var:aroai_building_type_223_collected_data
subtract = { value = var:aroai_building_type_223_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_223_collected_data_3 = { value = var:aroai_building_type_223_collected_data
subtract = { value = var:aroai_building_type_223_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_223_collected_data_4 = { value = var:aroai_building_type_223_collected_data
subtract = { value = var:aroai_building_type_223_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_223_collected_data_5 = { value = var:aroai_building_type_223_collected_data
divide = 10000000 floor = yes }
aroai_building_type_223_collected_data_average_of_1_and_2 = { value = aroai_building_type_223_collected_data_1
add = aroai_building_type_223_collected_data_2 divide = 2 floor = yes }
aroai_building_type_224_collected_data_1 = { value = var:aroai_building_type_224_collected_data
subtract = { value = var:aroai_building_type_224_collected_data floor = yes } multiply = 100 }
aroai_building_type_224_collected_data_2 = { value = var:aroai_building_type_224_collected_data
subtract = { value = var:aroai_building_type_224_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_224_collected_data_3 = { value = var:aroai_building_type_224_collected_data
subtract = { value = var:aroai_building_type_224_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_224_collected_data_4 = { value = var:aroai_building_type_224_collected_data
subtract = { value = var:aroai_building_type_224_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_224_collected_data_5 = { value = var:aroai_building_type_224_collected_data
divide = 10000000 floor = yes }
aroai_building_type_224_collected_data_average_of_1_and_2 = { value = aroai_building_type_224_collected_data_1
add = aroai_building_type_224_collected_data_2 divide = 2 floor = yes }
aroai_building_type_225_collected_data_1 = { value = var:aroai_building_type_225_collected_data
subtract = { value = var:aroai_building_type_225_collected_data floor = yes } multiply = 100 }
aroai_building_type_225_collected_data_2 = { value = var:aroai_building_type_225_collected_data
subtract = { value = var:aroai_building_type_225_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_225_collected_data_3 = { value = var:aroai_building_type_225_collected_data
subtract = { value = var:aroai_building_type_225_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_225_collected_data_4 = { value = var:aroai_building_type_225_collected_data
subtract = { value = var:aroai_building_type_225_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_225_collected_data_5 = { value = var:aroai_building_type_225_collected_data
divide = 10000000 floor = yes }
aroai_building_type_225_collected_data_average_of_1_and_2 = { value = aroai_building_type_225_collected_data_1
add = aroai_building_type_225_collected_data_2 divide = 2 floor = yes }
aroai_building_type_226_collected_data_1 = { value = var:aroai_building_type_226_collected_data
subtract = { value = var:aroai_building_type_226_collected_data floor = yes } multiply = 100 }
aroai_building_type_226_collected_data_2 = { value = var:aroai_building_type_226_collected_data
subtract = { value = var:aroai_building_type_226_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_226_collected_data_3 = { value = var:aroai_building_type_226_collected_data
subtract = { value = var:aroai_building_type_226_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_226_collected_data_4 = { value = var:aroai_building_type_226_collected_data
subtract = { value = var:aroai_building_type_226_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_226_collected_data_5 = { value = var:aroai_building_type_226_collected_data
divide = 10000000 floor = yes }
aroai_building_type_226_collected_data_average_of_1_and_2 = { value = aroai_building_type_226_collected_data_1
add = aroai_building_type_226_collected_data_2 divide = 2 floor = yes }
aroai_building_type_227_collected_data_1 = { value = var:aroai_building_type_227_collected_data
subtract = { value = var:aroai_building_type_227_collected_data floor = yes } multiply = 100 }
aroai_building_type_227_collected_data_2 = { value = var:aroai_building_type_227_collected_data
subtract = { value = var:aroai_building_type_227_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_227_collected_data_3 = { value = var:aroai_building_type_227_collected_data
subtract = { value = var:aroai_building_type_227_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_227_collected_data_4 = { value = var:aroai_building_type_227_collected_data
subtract = { value = var:aroai_building_type_227_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_227_collected_data_5 = { value = var:aroai_building_type_227_collected_data
divide = 10000000 floor = yes }
aroai_building_type_227_collected_data_average_of_1_and_2 = { value = aroai_building_type_227_collected_data_1
add = aroai_building_type_227_collected_data_2 divide = 2 floor = yes }
aroai_building_type_228_collected_data_1 = { value = var:aroai_building_type_228_collected_data
subtract = { value = var:aroai_building_type_228_collected_data floor = yes } multiply = 100 }
aroai_building_type_228_collected_data_2 = { value = var:aroai_building_type_228_collected_data
subtract = { value = var:aroai_building_type_228_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_228_collected_data_3 = { value = var:aroai_building_type_228_collected_data
subtract = { value = var:aroai_building_type_228_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_228_collected_data_4 = { value = var:aroai_building_type_228_collected_data
subtract = { value = var:aroai_building_type_228_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_228_collected_data_5 = { value = var:aroai_building_type_228_collected_data
divide = 10000000 floor = yes }
aroai_building_type_228_collected_data_average_of_1_and_2 = { value = aroai_building_type_228_collected_data_1
add = aroai_building_type_228_collected_data_2 divide = 2 floor = yes }
aroai_building_type_229_collected_data_1 = { value = var:aroai_building_type_229_collected_data
subtract = { value = var:aroai_building_type_229_collected_data floor = yes } multiply = 100 }
aroai_building_type_229_collected_data_2 = { value = var:aroai_building_type_229_collected_data
subtract = { value = var:aroai_building_type_229_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_229_collected_data_3 = { value = var:aroai_building_type_229_collected_data
subtract = { value = var:aroai_building_type_229_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_229_collected_data_4 = { value = var:aroai_building_type_229_collected_data
subtract = { value = var:aroai_building_type_229_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_229_collected_data_5 = { value = var:aroai_building_type_229_collected_data
divide = 10000000 floor = yes }
aroai_building_type_229_collected_data_average_of_1_and_2 = { value = aroai_building_type_229_collected_data_1
add = aroai_building_type_229_collected_data_2 divide = 2 floor = yes }
aroai_building_type_230_collected_data_1 = { value = var:aroai_building_type_230_collected_data
subtract = { value = var:aroai_building_type_230_collected_data floor = yes } multiply = 100 }
aroai_building_type_230_collected_data_2 = { value = var:aroai_building_type_230_collected_data
subtract = { value = var:aroai_building_type_230_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_230_collected_data_3 = { value = var:aroai_building_type_230_collected_data
subtract = { value = var:aroai_building_type_230_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_230_collected_data_4 = { value = var:aroai_building_type_230_collected_data
subtract = { value = var:aroai_building_type_230_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_230_collected_data_5 = { value = var:aroai_building_type_230_collected_data
divide = 10000000 floor = yes }
aroai_building_type_230_collected_data_average_of_1_and_2 = { value = aroai_building_type_230_collected_data_1
add = aroai_building_type_230_collected_data_2 divide = 2 floor = yes }
aroai_building_type_231_collected_data_1 = { value = var:aroai_building_type_231_collected_data
subtract = { value = var:aroai_building_type_231_collected_data floor = yes } multiply = 100 }
aroai_building_type_231_collected_data_2 = { value = var:aroai_building_type_231_collected_data
subtract = { value = var:aroai_building_type_231_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_231_collected_data_3 = { value = var:aroai_building_type_231_collected_data
subtract = { value = var:aroai_building_type_231_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_231_collected_data_4 = { value = var:aroai_building_type_231_collected_data
subtract = { value = var:aroai_building_type_231_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_231_collected_data_5 = { value = var:aroai_building_type_231_collected_data
divide = 10000000 floor = yes }
aroai_building_type_231_collected_data_average_of_1_and_2 = { value = aroai_building_type_231_collected_data_1
add = aroai_building_type_231_collected_data_2 divide = 2 floor = yes }
aroai_building_type_232_collected_data_1 = { value = var:aroai_building_type_232_collected_data
subtract = { value = var:aroai_building_type_232_collected_data floor = yes } multiply = 100 }
aroai_building_type_232_collected_data_2 = { value = var:aroai_building_type_232_collected_data
subtract = { value = var:aroai_building_type_232_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_232_collected_data_3 = { value = var:aroai_building_type_232_collected_data
subtract = { value = var:aroai_building_type_232_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_232_collected_data_4 = { value = var:aroai_building_type_232_collected_data
subtract = { value = var:aroai_building_type_232_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_232_collected_data_5 = { value = var:aroai_building_type_232_collected_data
divide = 10000000 floor = yes }
aroai_building_type_232_collected_data_average_of_1_and_2 = { value = aroai_building_type_232_collected_data_1
add = aroai_building_type_232_collected_data_2 divide = 2 floor = yes }
aroai_building_type_233_collected_data_1 = { value = var:aroai_building_type_233_collected_data
subtract = { value = var:aroai_building_type_233_collected_data floor = yes } multiply = 100 }
aroai_building_type_233_collected_data_2 = { value = var:aroai_building_type_233_collected_data
subtract = { value = var:aroai_building_type_233_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_233_collected_data_3 = { value = var:aroai_building_type_233_collected_data
subtract = { value = var:aroai_building_type_233_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_233_collected_data_4 = { value = var:aroai_building_type_233_collected_data
subtract = { value = var:aroai_building_type_233_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_233_collected_data_5 = { value = var:aroai_building_type_233_collected_data
divide = 10000000 floor = yes }
aroai_building_type_233_collected_data_average_of_1_and_2 = { value = aroai_building_type_233_collected_data_1
add = aroai_building_type_233_collected_data_2 divide = 2 floor = yes }
aroai_building_type_234_collected_data_1 = { value = var:aroai_building_type_234_collected_data
subtract = { value = var:aroai_building_type_234_collected_data floor = yes } multiply = 100 }
aroai_building_type_234_collected_data_2 = { value = var:aroai_building_type_234_collected_data
subtract = { value = var:aroai_building_type_234_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_234_collected_data_3 = { value = var:aroai_building_type_234_collected_data
subtract = { value = var:aroai_building_type_234_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_234_collected_data_4 = { value = var:aroai_building_type_234_collected_data
subtract = { value = var:aroai_building_type_234_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_234_collected_data_5 = { value = var:aroai_building_type_234_collected_data
divide = 10000000 floor = yes }
aroai_building_type_234_collected_data_average_of_1_and_2 = { value = aroai_building_type_234_collected_data_1
add = aroai_building_type_234_collected_data_2 divide = 2 floor = yes }
aroai_building_type_235_collected_data_1 = { value = var:aroai_building_type_235_collected_data
subtract = { value = var:aroai_building_type_235_collected_data floor = yes } multiply = 100 }
aroai_building_type_235_collected_data_2 = { value = var:aroai_building_type_235_collected_data
subtract = { value = var:aroai_building_type_235_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_235_collected_data_3 = { value = var:aroai_building_type_235_collected_data
subtract = { value = var:aroai_building_type_235_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_235_collected_data_4 = { value = var:aroai_building_type_235_collected_data
subtract = { value = var:aroai_building_type_235_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_235_collected_data_5 = { value = var:aroai_building_type_235_collected_data
divide = 10000000 floor = yes }
aroai_building_type_235_collected_data_average_of_1_and_2 = { value = aroai_building_type_235_collected_data_1
add = aroai_building_type_235_collected_data_2 divide = 2 floor = yes }
aroai_building_type_236_collected_data_1 = { value = var:aroai_building_type_236_collected_data
subtract = { value = var:aroai_building_type_236_collected_data floor = yes } multiply = 100 }
aroai_building_type_236_collected_data_2 = { value = var:aroai_building_type_236_collected_data
subtract = { value = var:aroai_building_type_236_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_236_collected_data_3 = { value = var:aroai_building_type_236_collected_data
subtract = { value = var:aroai_building_type_236_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_236_collected_data_4 = { value = var:aroai_building_type_236_collected_data
subtract = { value = var:aroai_building_type_236_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_236_collected_data_5 = { value = var:aroai_building_type_236_collected_data
divide = 10000000 floor = yes }
aroai_building_type_236_collected_data_average_of_1_and_2 = { value = aroai_building_type_236_collected_data_1
add = aroai_building_type_236_collected_data_2 divide = 2 floor = yes }
aroai_building_type_237_collected_data_1 = { value = var:aroai_building_type_237_collected_data
subtract = { value = var:aroai_building_type_237_collected_data floor = yes } multiply = 100 }
aroai_building_type_237_collected_data_2 = { value = var:aroai_building_type_237_collected_data
subtract = { value = var:aroai_building_type_237_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_237_collected_data_3 = { value = var:aroai_building_type_237_collected_data
subtract = { value = var:aroai_building_type_237_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_237_collected_data_4 = { value = var:aroai_building_type_237_collected_data
subtract = { value = var:aroai_building_type_237_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_237_collected_data_5 = { value = var:aroai_building_type_237_collected_data
divide = 10000000 floor = yes }
aroai_building_type_237_collected_data_average_of_1_and_2 = { value = aroai_building_type_237_collected_data_1
add = aroai_building_type_237_collected_data_2 divide = 2 floor = yes }
aroai_building_type_238_collected_data_1 = { value = var:aroai_building_type_238_collected_data
subtract = { value = var:aroai_building_type_238_collected_data floor = yes } multiply = 100 }
aroai_building_type_238_collected_data_2 = { value = var:aroai_building_type_238_collected_data
subtract = { value = var:aroai_building_type_238_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_238_collected_data_3 = { value = var:aroai_building_type_238_collected_data
subtract = { value = var:aroai_building_type_238_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_238_collected_data_4 = { value = var:aroai_building_type_238_collected_data
subtract = { value = var:aroai_building_type_238_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_238_collected_data_5 = { value = var:aroai_building_type_238_collected_data
divide = 10000000 floor = yes }
aroai_building_type_238_collected_data_average_of_1_and_2 = { value = aroai_building_type_238_collected_data_1
add = aroai_building_type_238_collected_data_2 divide = 2 floor = yes }
aroai_building_type_239_collected_data_1 = { value = var:aroai_building_type_239_collected_data
subtract = { value = var:aroai_building_type_239_collected_data floor = yes } multiply = 100 }
aroai_building_type_239_collected_data_2 = { value = var:aroai_building_type_239_collected_data
subtract = { value = var:aroai_building_type_239_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_239_collected_data_3 = { value = var:aroai_building_type_239_collected_data
subtract = { value = var:aroai_building_type_239_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_239_collected_data_4 = { value = var:aroai_building_type_239_collected_data
subtract = { value = var:aroai_building_type_239_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_239_collected_data_5 = { value = var:aroai_building_type_239_collected_data
divide = 10000000 floor = yes }
aroai_building_type_239_collected_data_average_of_1_and_2 = { value = aroai_building_type_239_collected_data_1
add = aroai_building_type_239_collected_data_2 divide = 2 floor = yes }
aroai_building_type_240_collected_data_1 = { value = var:aroai_building_type_240_collected_data
subtract = { value = var:aroai_building_type_240_collected_data floor = yes } multiply = 100 }
aroai_building_type_240_collected_data_2 = { value = var:aroai_building_type_240_collected_data
subtract = { value = var:aroai_building_type_240_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_240_collected_data_3 = { value = var:aroai_building_type_240_collected_data
subtract = { value = var:aroai_building_type_240_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_240_collected_data_4 = { value = var:aroai_building_type_240_collected_data
subtract = { value = var:aroai_building_type_240_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_240_collected_data_5 = { value = var:aroai_building_type_240_collected_data
divide = 10000000 floor = yes }
aroai_building_type_240_collected_data_average_of_1_and_2 = { value = aroai_building_type_240_collected_data_1
add = aroai_building_type_240_collected_data_2 divide = 2 floor = yes }
aroai_building_type_241_collected_data_1 = { value = var:aroai_building_type_241_collected_data
subtract = { value = var:aroai_building_type_241_collected_data floor = yes } multiply = 100 }
aroai_building_type_241_collected_data_2 = { value = var:aroai_building_type_241_collected_data
subtract = { value = var:aroai_building_type_241_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_241_collected_data_3 = { value = var:aroai_building_type_241_collected_data
subtract = { value = var:aroai_building_type_241_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_241_collected_data_4 = { value = var:aroai_building_type_241_collected_data
subtract = { value = var:aroai_building_type_241_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_241_collected_data_5 = { value = var:aroai_building_type_241_collected_data
divide = 10000000 floor = yes }
aroai_building_type_241_collected_data_average_of_1_and_2 = { value = aroai_building_type_241_collected_data_1
add = aroai_building_type_241_collected_data_2 divide = 2 floor = yes }
aroai_building_type_242_collected_data_1 = { value = var:aroai_building_type_242_collected_data
subtract = { value = var:aroai_building_type_242_collected_data floor = yes } multiply = 100 }
aroai_building_type_242_collected_data_2 = { value = var:aroai_building_type_242_collected_data
subtract = { value = var:aroai_building_type_242_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_242_collected_data_3 = { value = var:aroai_building_type_242_collected_data
subtract = { value = var:aroai_building_type_242_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_242_collected_data_4 = { value = var:aroai_building_type_242_collected_data
subtract = { value = var:aroai_building_type_242_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_242_collected_data_5 = { value = var:aroai_building_type_242_collected_data
divide = 10000000 floor = yes }
aroai_building_type_242_collected_data_average_of_1_and_2 = { value = aroai_building_type_242_collected_data_1
add = aroai_building_type_242_collected_data_2 divide = 2 floor = yes }
aroai_building_type_243_collected_data_1 = { value = var:aroai_building_type_243_collected_data
subtract = { value = var:aroai_building_type_243_collected_data floor = yes } multiply = 100 }
aroai_building_type_243_collected_data_2 = { value = var:aroai_building_type_243_collected_data
subtract = { value = var:aroai_building_type_243_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_243_collected_data_3 = { value = var:aroai_building_type_243_collected_data
subtract = { value = var:aroai_building_type_243_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_243_collected_data_4 = { value = var:aroai_building_type_243_collected_data
subtract = { value = var:aroai_building_type_243_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_243_collected_data_5 = { value = var:aroai_building_type_243_collected_data
divide = 10000000 floor = yes }
aroai_building_type_243_collected_data_average_of_1_and_2 = { value = aroai_building_type_243_collected_data_1
add = aroai_building_type_243_collected_data_2 divide = 2 floor = yes }
aroai_building_type_244_collected_data_1 = { value = var:aroai_building_type_244_collected_data
subtract = { value = var:aroai_building_type_244_collected_data floor = yes } multiply = 100 }
aroai_building_type_244_collected_data_2 = { value = var:aroai_building_type_244_collected_data
subtract = { value = var:aroai_building_type_244_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_244_collected_data_3 = { value = var:aroai_building_type_244_collected_data
subtract = { value = var:aroai_building_type_244_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_244_collected_data_4 = { value = var:aroai_building_type_244_collected_data
subtract = { value = var:aroai_building_type_244_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_244_collected_data_5 = { value = var:aroai_building_type_244_collected_data
divide = 10000000 floor = yes }
aroai_building_type_244_collected_data_average_of_1_and_2 = { value = aroai_building_type_244_collected_data_1
add = aroai_building_type_244_collected_data_2 divide = 2 floor = yes }
aroai_building_type_245_collected_data_1 = { value = var:aroai_building_type_245_collected_data
subtract = { value = var:aroai_building_type_245_collected_data floor = yes } multiply = 100 }
aroai_building_type_245_collected_data_2 = { value = var:aroai_building_type_245_collected_data
subtract = { value = var:aroai_building_type_245_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_245_collected_data_3 = { value = var:aroai_building_type_245_collected_data
subtract = { value = var:aroai_building_type_245_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_245_collected_data_4 = { value = var:aroai_building_type_245_collected_data
subtract = { value = var:aroai_building_type_245_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_245_collected_data_5 = { value = var:aroai_building_type_245_collected_data
divide = 10000000 floor = yes }
aroai_building_type_245_collected_data_average_of_1_and_2 = { value = aroai_building_type_245_collected_data_1
add = aroai_building_type_245_collected_data_2 divide = 2 floor = yes }
aroai_building_type_246_collected_data_1 = { value = var:aroai_building_type_246_collected_data
subtract = { value = var:aroai_building_type_246_collected_data floor = yes } multiply = 100 }
aroai_building_type_246_collected_data_2 = { value = var:aroai_building_type_246_collected_data
subtract = { value = var:aroai_building_type_246_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_246_collected_data_3 = { value = var:aroai_building_type_246_collected_data
subtract = { value = var:aroai_building_type_246_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_246_collected_data_4 = { value = var:aroai_building_type_246_collected_data
subtract = { value = var:aroai_building_type_246_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_246_collected_data_5 = { value = var:aroai_building_type_246_collected_data
divide = 10000000 floor = yes }
aroai_building_type_246_collected_data_average_of_1_and_2 = { value = aroai_building_type_246_collected_data_1
add = aroai_building_type_246_collected_data_2 divide = 2 floor = yes }
aroai_building_type_247_collected_data_1 = { value = var:aroai_building_type_247_collected_data
subtract = { value = var:aroai_building_type_247_collected_data floor = yes } multiply = 100 }
aroai_building_type_247_collected_data_2 = { value = var:aroai_building_type_247_collected_data
subtract = { value = var:aroai_building_type_247_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_247_collected_data_3 = { value = var:aroai_building_type_247_collected_data
subtract = { value = var:aroai_building_type_247_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_247_collected_data_4 = { value = var:aroai_building_type_247_collected_data
subtract = { value = var:aroai_building_type_247_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_247_collected_data_5 = { value = var:aroai_building_type_247_collected_data
divide = 10000000 floor = yes }
aroai_building_type_247_collected_data_average_of_1_and_2 = { value = aroai_building_type_247_collected_data_1
add = aroai_building_type_247_collected_data_2 divide = 2 floor = yes }
aroai_building_type_248_collected_data_1 = { value = var:aroai_building_type_248_collected_data
subtract = { value = var:aroai_building_type_248_collected_data floor = yes } multiply = 100 }
aroai_building_type_248_collected_data_2 = { value = var:aroai_building_type_248_collected_data
subtract = { value = var:aroai_building_type_248_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_248_collected_data_3 = { value = var:aroai_building_type_248_collected_data
subtract = { value = var:aroai_building_type_248_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_248_collected_data_4 = { value = var:aroai_building_type_248_collected_data
subtract = { value = var:aroai_building_type_248_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_248_collected_data_5 = { value = var:aroai_building_type_248_collected_data
divide = 10000000 floor = yes }
aroai_building_type_248_collected_data_average_of_1_and_2 = { value = aroai_building_type_248_collected_data_1
add = aroai_building_type_248_collected_data_2 divide = 2 floor = yes }
aroai_building_type_249_collected_data_1 = { value = var:aroai_building_type_249_collected_data
subtract = { value = var:aroai_building_type_249_collected_data floor = yes } multiply = 100 }
aroai_building_type_249_collected_data_2 = { value = var:aroai_building_type_249_collected_data
subtract = { value = var:aroai_building_type_249_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_249_collected_data_3 = { value = var:aroai_building_type_249_collected_data
subtract = { value = var:aroai_building_type_249_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_249_collected_data_4 = { value = var:aroai_building_type_249_collected_data
subtract = { value = var:aroai_building_type_249_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_249_collected_data_5 = { value = var:aroai_building_type_249_collected_data
divide = 10000000 floor = yes }
aroai_building_type_249_collected_data_average_of_1_and_2 = { value = aroai_building_type_249_collected_data_1
add = aroai_building_type_249_collected_data_2 divide = 2 floor = yes }
aroai_building_type_250_collected_data_1 = { value = var:aroai_building_type_250_collected_data
subtract = { value = var:aroai_building_type_250_collected_data floor = yes } multiply = 100 }
aroai_building_type_250_collected_data_2 = { value = var:aroai_building_type_250_collected_data
subtract = { value = var:aroai_building_type_250_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_250_collected_data_3 = { value = var:aroai_building_type_250_collected_data
subtract = { value = var:aroai_building_type_250_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_250_collected_data_4 = { value = var:aroai_building_type_250_collected_data
subtract = { value = var:aroai_building_type_250_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_250_collected_data_5 = { value = var:aroai_building_type_250_collected_data
divide = 10000000 floor = yes }
aroai_building_type_250_collected_data_average_of_1_and_2 = { value = aroai_building_type_250_collected_data_1
add = aroai_building_type_250_collected_data_2 divide = 2 floor = yes }
aroai_building_type_251_collected_data_1 = { value = var:aroai_building_type_251_collected_data
subtract = { value = var:aroai_building_type_251_collected_data floor = yes } multiply = 100 }
aroai_building_type_251_collected_data_2 = { value = var:aroai_building_type_251_collected_data
subtract = { value = var:aroai_building_type_251_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_251_collected_data_3 = { value = var:aroai_building_type_251_collected_data
subtract = { value = var:aroai_building_type_251_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_251_collected_data_4 = { value = var:aroai_building_type_251_collected_data
subtract = { value = var:aroai_building_type_251_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_251_collected_data_5 = { value = var:aroai_building_type_251_collected_data
divide = 10000000 floor = yes }
aroai_building_type_251_collected_data_average_of_1_and_2 = { value = aroai_building_type_251_collected_data_1
add = aroai_building_type_251_collected_data_2 divide = 2 floor = yes }
aroai_building_type_252_collected_data_1 = { value = var:aroai_building_type_252_collected_data
subtract = { value = var:aroai_building_type_252_collected_data floor = yes } multiply = 100 }
aroai_building_type_252_collected_data_2 = { value = var:aroai_building_type_252_collected_data
subtract = { value = var:aroai_building_type_252_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_252_collected_data_3 = { value = var:aroai_building_type_252_collected_data
subtract = { value = var:aroai_building_type_252_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_252_collected_data_4 = { value = var:aroai_building_type_252_collected_data
subtract = { value = var:aroai_building_type_252_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_252_collected_data_5 = { value = var:aroai_building_type_252_collected_data
divide = 10000000 floor = yes }
aroai_building_type_252_collected_data_average_of_1_and_2 = { value = aroai_building_type_252_collected_data_1
add = aroai_building_type_252_collected_data_2 divide = 2 floor = yes }
aroai_building_type_253_collected_data_1 = { value = var:aroai_building_type_253_collected_data
subtract = { value = var:aroai_building_type_253_collected_data floor = yes } multiply = 100 }
aroai_building_type_253_collected_data_2 = { value = var:aroai_building_type_253_collected_data
subtract = { value = var:aroai_building_type_253_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_253_collected_data_3 = { value = var:aroai_building_type_253_collected_data
subtract = { value = var:aroai_building_type_253_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_253_collected_data_4 = { value = var:aroai_building_type_253_collected_data
subtract = { value = var:aroai_building_type_253_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_253_collected_data_5 = { value = var:aroai_building_type_253_collected_data
divide = 10000000 floor = yes }
aroai_building_type_253_collected_data_average_of_1_and_2 = { value = aroai_building_type_253_collected_data_1
add = aroai_building_type_253_collected_data_2 divide = 2 floor = yes }
aroai_building_type_254_collected_data_1 = { value = var:aroai_building_type_254_collected_data
subtract = { value = var:aroai_building_type_254_collected_data floor = yes } multiply = 100 }
aroai_building_type_254_collected_data_2 = { value = var:aroai_building_type_254_collected_data
subtract = { value = var:aroai_building_type_254_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_254_collected_data_3 = { value = var:aroai_building_type_254_collected_data
subtract = { value = var:aroai_building_type_254_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_254_collected_data_4 = { value = var:aroai_building_type_254_collected_data
subtract = { value = var:aroai_building_type_254_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_254_collected_data_5 = { value = var:aroai_building_type_254_collected_data
divide = 10000000 floor = yes }
aroai_building_type_254_collected_data_average_of_1_and_2 = { value = aroai_building_type_254_collected_data_1
add = aroai_building_type_254_collected_data_2 divide = 2 floor = yes }
aroai_building_type_255_collected_data_1 = { value = var:aroai_building_type_255_collected_data
subtract = { value = var:aroai_building_type_255_collected_data floor = yes } multiply = 100 }
aroai_building_type_255_collected_data_2 = { value = var:aroai_building_type_255_collected_data
subtract = { value = var:aroai_building_type_255_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_255_collected_data_3 = { value = var:aroai_building_type_255_collected_data
subtract = { value = var:aroai_building_type_255_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_255_collected_data_4 = { value = var:aroai_building_type_255_collected_data
subtract = { value = var:aroai_building_type_255_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_255_collected_data_5 = { value = var:aroai_building_type_255_collected_data
divide = 10000000 floor = yes }
aroai_building_type_255_collected_data_average_of_1_and_2 = { value = aroai_building_type_255_collected_data_1
add = aroai_building_type_255_collected_data_2 divide = 2 floor = yes }
aroai_building_type_256_collected_data_1 = { value = var:aroai_building_type_256_collected_data
subtract = { value = var:aroai_building_type_256_collected_data floor = yes } multiply = 100 }
aroai_building_type_256_collected_data_2 = { value = var:aroai_building_type_256_collected_data
subtract = { value = var:aroai_building_type_256_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_256_collected_data_3 = { value = var:aroai_building_type_256_collected_data
subtract = { value = var:aroai_building_type_256_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_256_collected_data_4 = { value = var:aroai_building_type_256_collected_data
subtract = { value = var:aroai_building_type_256_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_256_collected_data_5 = { value = var:aroai_building_type_256_collected_data
divide = 10000000 floor = yes }
aroai_building_type_256_collected_data_average_of_1_and_2 = { value = aroai_building_type_256_collected_data_1
add = aroai_building_type_256_collected_data_2 divide = 2 floor = yes }
aroai_building_type_257_collected_data_1 = { value = var:aroai_building_type_257_collected_data
subtract = { value = var:aroai_building_type_257_collected_data floor = yes } multiply = 100 }
aroai_building_type_257_collected_data_2 = { value = var:aroai_building_type_257_collected_data
subtract = { value = var:aroai_building_type_257_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_257_collected_data_3 = { value = var:aroai_building_type_257_collected_data
subtract = { value = var:aroai_building_type_257_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_257_collected_data_4 = { value = var:aroai_building_type_257_collected_data
subtract = { value = var:aroai_building_type_257_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_257_collected_data_5 = { value = var:aroai_building_type_257_collected_data
divide = 10000000 floor = yes }
aroai_building_type_257_collected_data_average_of_1_and_2 = { value = aroai_building_type_257_collected_data_1
add = aroai_building_type_257_collected_data_2 divide = 2 floor = yes }
aroai_building_type_258_collected_data_1 = { value = var:aroai_building_type_258_collected_data
subtract = { value = var:aroai_building_type_258_collected_data floor = yes } multiply = 100 }
aroai_building_type_258_collected_data_2 = { value = var:aroai_building_type_258_collected_data
subtract = { value = var:aroai_building_type_258_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_258_collected_data_3 = { value = var:aroai_building_type_258_collected_data
subtract = { value = var:aroai_building_type_258_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_258_collected_data_4 = { value = var:aroai_building_type_258_collected_data
subtract = { value = var:aroai_building_type_258_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_258_collected_data_5 = { value = var:aroai_building_type_258_collected_data
divide = 10000000 floor = yes }
aroai_building_type_258_collected_data_average_of_1_and_2 = { value = aroai_building_type_258_collected_data_1
add = aroai_building_type_258_collected_data_2 divide = 2 floor = yes }
aroai_building_type_259_collected_data_1 = { value = var:aroai_building_type_259_collected_data
subtract = { value = var:aroai_building_type_259_collected_data floor = yes } multiply = 100 }
aroai_building_type_259_collected_data_2 = { value = var:aroai_building_type_259_collected_data
subtract = { value = var:aroai_building_type_259_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_259_collected_data_3 = { value = var:aroai_building_type_259_collected_data
subtract = { value = var:aroai_building_type_259_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_259_collected_data_4 = { value = var:aroai_building_type_259_collected_data
subtract = { value = var:aroai_building_type_259_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_259_collected_data_5 = { value = var:aroai_building_type_259_collected_data
divide = 10000000 floor = yes }
aroai_building_type_259_collected_data_average_of_1_and_2 = { value = aroai_building_type_259_collected_data_1
add = aroai_building_type_259_collected_data_2 divide = 2 floor = yes }
aroai_building_type_260_collected_data_1 = { value = var:aroai_building_type_260_collected_data
subtract = { value = var:aroai_building_type_260_collected_data floor = yes } multiply = 100 }
aroai_building_type_260_collected_data_2 = { value = var:aroai_building_type_260_collected_data
subtract = { value = var:aroai_building_type_260_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_260_collected_data_3 = { value = var:aroai_building_type_260_collected_data
subtract = { value = var:aroai_building_type_260_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_260_collected_data_4 = { value = var:aroai_building_type_260_collected_data
subtract = { value = var:aroai_building_type_260_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_260_collected_data_5 = { value = var:aroai_building_type_260_collected_data
divide = 10000000 floor = yes }
aroai_building_type_260_collected_data_average_of_1_and_2 = { value = aroai_building_type_260_collected_data_1
add = aroai_building_type_260_collected_data_2 divide = 2 floor = yes }
aroai_building_type_261_collected_data_1 = { value = var:aroai_building_type_261_collected_data
subtract = { value = var:aroai_building_type_261_collected_data floor = yes } multiply = 100 }
aroai_building_type_261_collected_data_2 = { value = var:aroai_building_type_261_collected_data
subtract = { value = var:aroai_building_type_261_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_261_collected_data_3 = { value = var:aroai_building_type_261_collected_data
subtract = { value = var:aroai_building_type_261_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_261_collected_data_4 = { value = var:aroai_building_type_261_collected_data
subtract = { value = var:aroai_building_type_261_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_261_collected_data_5 = { value = var:aroai_building_type_261_collected_data
divide = 10000000 floor = yes }
aroai_building_type_261_collected_data_average_of_1_and_2 = { value = aroai_building_type_261_collected_data_1
add = aroai_building_type_261_collected_data_2 divide = 2 floor = yes }
aroai_building_type_262_collected_data_1 = { value = var:aroai_building_type_262_collected_data
subtract = { value = var:aroai_building_type_262_collected_data floor = yes } multiply = 100 }
aroai_building_type_262_collected_data_2 = { value = var:aroai_building_type_262_collected_data
subtract = { value = var:aroai_building_type_262_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_262_collected_data_3 = { value = var:aroai_building_type_262_collected_data
subtract = { value = var:aroai_building_type_262_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_262_collected_data_4 = { value = var:aroai_building_type_262_collected_data
subtract = { value = var:aroai_building_type_262_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_262_collected_data_5 = { value = var:aroai_building_type_262_collected_data
divide = 10000000 floor = yes }
aroai_building_type_262_collected_data_average_of_1_and_2 = { value = aroai_building_type_262_collected_data_1
add = aroai_building_type_262_collected_data_2 divide = 2 floor = yes }
aroai_building_type_263_collected_data_1 = { value = var:aroai_building_type_263_collected_data
subtract = { value = var:aroai_building_type_263_collected_data floor = yes } multiply = 100 }
aroai_building_type_263_collected_data_2 = { value = var:aroai_building_type_263_collected_data
subtract = { value = var:aroai_building_type_263_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_263_collected_data_3 = { value = var:aroai_building_type_263_collected_data
subtract = { value = var:aroai_building_type_263_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_263_collected_data_4 = { value = var:aroai_building_type_263_collected_data
subtract = { value = var:aroai_building_type_263_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_263_collected_data_5 = { value = var:aroai_building_type_263_collected_data
divide = 10000000 floor = yes }
aroai_building_type_263_collected_data_average_of_1_and_2 = { value = aroai_building_type_263_collected_data_1
add = aroai_building_type_263_collected_data_2 divide = 2 floor = yes }
aroai_building_type_264_collected_data_1 = { value = var:aroai_building_type_264_collected_data
subtract = { value = var:aroai_building_type_264_collected_data floor = yes } multiply = 100 }
aroai_building_type_264_collected_data_2 = { value = var:aroai_building_type_264_collected_data
subtract = { value = var:aroai_building_type_264_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_264_collected_data_3 = { value = var:aroai_building_type_264_collected_data
subtract = { value = var:aroai_building_type_264_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_264_collected_data_4 = { value = var:aroai_building_type_264_collected_data
subtract = { value = var:aroai_building_type_264_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_264_collected_data_5 = { value = var:aroai_building_type_264_collected_data
divide = 10000000 floor = yes }
aroai_building_type_264_collected_data_average_of_1_and_2 = { value = aroai_building_type_264_collected_data_1
add = aroai_building_type_264_collected_data_2 divide = 2 floor = yes }
aroai_building_type_265_collected_data_1 = { value = var:aroai_building_type_265_collected_data
subtract = { value = var:aroai_building_type_265_collected_data floor = yes } multiply = 100 }
aroai_building_type_265_collected_data_2 = { value = var:aroai_building_type_265_collected_data
subtract = { value = var:aroai_building_type_265_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_265_collected_data_3 = { value = var:aroai_building_type_265_collected_data
subtract = { value = var:aroai_building_type_265_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_265_collected_data_4 = { value = var:aroai_building_type_265_collected_data
subtract = { value = var:aroai_building_type_265_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_265_collected_data_5 = { value = var:aroai_building_type_265_collected_data
divide = 10000000 floor = yes }
aroai_building_type_265_collected_data_average_of_1_and_2 = { value = aroai_building_type_265_collected_data_1
add = aroai_building_type_265_collected_data_2 divide = 2 floor = yes }
aroai_building_type_266_collected_data_1 = { value = var:aroai_building_type_266_collected_data
subtract = { value = var:aroai_building_type_266_collected_data floor = yes } multiply = 100 }
aroai_building_type_266_collected_data_2 = { value = var:aroai_building_type_266_collected_data
subtract = { value = var:aroai_building_type_266_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_266_collected_data_3 = { value = var:aroai_building_type_266_collected_data
subtract = { value = var:aroai_building_type_266_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_266_collected_data_4 = { value = var:aroai_building_type_266_collected_data
subtract = { value = var:aroai_building_type_266_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_266_collected_data_5 = { value = var:aroai_building_type_266_collected_data
divide = 10000000 floor = yes }
aroai_building_type_266_collected_data_average_of_1_and_2 = { value = aroai_building_type_266_collected_data_1
add = aroai_building_type_266_collected_data_2 divide = 2 floor = yes }
aroai_building_type_267_collected_data_1 = { value = var:aroai_building_type_267_collected_data
subtract = { value = var:aroai_building_type_267_collected_data floor = yes } multiply = 100 }
aroai_building_type_267_collected_data_2 = { value = var:aroai_building_type_267_collected_data
subtract = { value = var:aroai_building_type_267_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_267_collected_data_3 = { value = var:aroai_building_type_267_collected_data
subtract = { value = var:aroai_building_type_267_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_267_collected_data_4 = { value = var:aroai_building_type_267_collected_data
subtract = { value = var:aroai_building_type_267_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_267_collected_data_5 = { value = var:aroai_building_type_267_collected_data
divide = 10000000 floor = yes }
aroai_building_type_267_collected_data_average_of_1_and_2 = { value = aroai_building_type_267_collected_data_1
add = aroai_building_type_267_collected_data_2 divide = 2 floor = yes }
aroai_building_type_268_collected_data_1 = { value = var:aroai_building_type_268_collected_data
subtract = { value = var:aroai_building_type_268_collected_data floor = yes } multiply = 100 }
aroai_building_type_268_collected_data_2 = { value = var:aroai_building_type_268_collected_data
subtract = { value = var:aroai_building_type_268_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_268_collected_data_3 = { value = var:aroai_building_type_268_collected_data
subtract = { value = var:aroai_building_type_268_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_268_collected_data_4 = { value = var:aroai_building_type_268_collected_data
subtract = { value = var:aroai_building_type_268_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_268_collected_data_5 = { value = var:aroai_building_type_268_collected_data
divide = 10000000 floor = yes }
aroai_building_type_268_collected_data_average_of_1_and_2 = { value = aroai_building_type_268_collected_data_1
add = aroai_building_type_268_collected_data_2 divide = 2 floor = yes }
aroai_building_type_269_collected_data_1 = { value = var:aroai_building_type_269_collected_data
subtract = { value = var:aroai_building_type_269_collected_data floor = yes } multiply = 100 }
aroai_building_type_269_collected_data_2 = { value = var:aroai_building_type_269_collected_data
subtract = { value = var:aroai_building_type_269_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_269_collected_data_3 = { value = var:aroai_building_type_269_collected_data
subtract = { value = var:aroai_building_type_269_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_269_collected_data_4 = { value = var:aroai_building_type_269_collected_data
subtract = { value = var:aroai_building_type_269_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_269_collected_data_5 = { value = var:aroai_building_type_269_collected_data
divide = 10000000 floor = yes }
aroai_building_type_269_collected_data_average_of_1_and_2 = { value = aroai_building_type_269_collected_data_1
add = aroai_building_type_269_collected_data_2 divide = 2 floor = yes }
aroai_building_type_270_collected_data_1 = { value = var:aroai_building_type_270_collected_data
subtract = { value = var:aroai_building_type_270_collected_data floor = yes } multiply = 100 }
aroai_building_type_270_collected_data_2 = { value = var:aroai_building_type_270_collected_data
subtract = { value = var:aroai_building_type_270_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_270_collected_data_3 = { value = var:aroai_building_type_270_collected_data
subtract = { value = var:aroai_building_type_270_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_270_collected_data_4 = { value = var:aroai_building_type_270_collected_data
subtract = { value = var:aroai_building_type_270_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_270_collected_data_5 = { value = var:aroai_building_type_270_collected_data
divide = 10000000 floor = yes }
aroai_building_type_270_collected_data_average_of_1_and_2 = { value = aroai_building_type_270_collected_data_1
add = aroai_building_type_270_collected_data_2 divide = 2 floor = yes }
aroai_building_type_271_collected_data_1 = { value = var:aroai_building_type_271_collected_data
subtract = { value = var:aroai_building_type_271_collected_data floor = yes } multiply = 100 }
aroai_building_type_271_collected_data_2 = { value = var:aroai_building_type_271_collected_data
subtract = { value = var:aroai_building_type_271_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_271_collected_data_3 = { value = var:aroai_building_type_271_collected_data
subtract = { value = var:aroai_building_type_271_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_271_collected_data_4 = { value = var:aroai_building_type_271_collected_data
subtract = { value = var:aroai_building_type_271_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_271_collected_data_5 = { value = var:aroai_building_type_271_collected_data
divide = 10000000 floor = yes }
aroai_building_type_271_collected_data_average_of_1_and_2 = { value = aroai_building_type_271_collected_data_1
add = aroai_building_type_271_collected_data_2 divide = 2 floor = yes }
aroai_building_type_272_collected_data_1 = { value = var:aroai_building_type_272_collected_data
subtract = { value = var:aroai_building_type_272_collected_data floor = yes } multiply = 100 }
aroai_building_type_272_collected_data_2 = { value = var:aroai_building_type_272_collected_data
subtract = { value = var:aroai_building_type_272_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_272_collected_data_3 = { value = var:aroai_building_type_272_collected_data
subtract = { value = var:aroai_building_type_272_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_272_collected_data_4 = { value = var:aroai_building_type_272_collected_data
subtract = { value = var:aroai_building_type_272_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_272_collected_data_5 = { value = var:aroai_building_type_272_collected_data
divide = 10000000 floor = yes }
aroai_building_type_272_collected_data_average_of_1_and_2 = { value = aroai_building_type_272_collected_data_1
add = aroai_building_type_272_collected_data_2 divide = 2 floor = yes }
aroai_building_type_273_collected_data_1 = { value = var:aroai_building_type_273_collected_data
subtract = { value = var:aroai_building_type_273_collected_data floor = yes } multiply = 100 }
aroai_building_type_273_collected_data_2 = { value = var:aroai_building_type_273_collected_data
subtract = { value = var:aroai_building_type_273_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_273_collected_data_3 = { value = var:aroai_building_type_273_collected_data
subtract = { value = var:aroai_building_type_273_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_273_collected_data_4 = { value = var:aroai_building_type_273_collected_data
subtract = { value = var:aroai_building_type_273_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_273_collected_data_5 = { value = var:aroai_building_type_273_collected_data
divide = 10000000 floor = yes }
aroai_building_type_273_collected_data_average_of_1_and_2 = { value = aroai_building_type_273_collected_data_1
add = aroai_building_type_273_collected_data_2 divide = 2 floor = yes }
aroai_building_type_274_collected_data_1 = { value = var:aroai_building_type_274_collected_data
subtract = { value = var:aroai_building_type_274_collected_data floor = yes } multiply = 100 }
aroai_building_type_274_collected_data_2 = { value = var:aroai_building_type_274_collected_data
subtract = { value = var:aroai_building_type_274_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_274_collected_data_3 = { value = var:aroai_building_type_274_collected_data
subtract = { value = var:aroai_building_type_274_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_274_collected_data_4 = { value = var:aroai_building_type_274_collected_data
subtract = { value = var:aroai_building_type_274_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_274_collected_data_5 = { value = var:aroai_building_type_274_collected_data
divide = 10000000 floor = yes }
aroai_building_type_274_collected_data_average_of_1_and_2 = { value = aroai_building_type_274_collected_data_1
add = aroai_building_type_274_collected_data_2 divide = 2 floor = yes }
aroai_building_type_275_collected_data_1 = { value = var:aroai_building_type_275_collected_data
subtract = { value = var:aroai_building_type_275_collected_data floor = yes } multiply = 100 }
aroai_building_type_275_collected_data_2 = { value = var:aroai_building_type_275_collected_data
subtract = { value = var:aroai_building_type_275_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_275_collected_data_3 = { value = var:aroai_building_type_275_collected_data
subtract = { value = var:aroai_building_type_275_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_275_collected_data_4 = { value = var:aroai_building_type_275_collected_data
subtract = { value = var:aroai_building_type_275_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_275_collected_data_5 = { value = var:aroai_building_type_275_collected_data
divide = 10000000 floor = yes }
aroai_building_type_275_collected_data_average_of_1_and_2 = { value = aroai_building_type_275_collected_data_1
add = aroai_building_type_275_collected_data_2 divide = 2 floor = yes }
aroai_building_type_276_collected_data_1 = { value = var:aroai_building_type_276_collected_data
subtract = { value = var:aroai_building_type_276_collected_data floor = yes } multiply = 100 }
aroai_building_type_276_collected_data_2 = { value = var:aroai_building_type_276_collected_data
subtract = { value = var:aroai_building_type_276_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_276_collected_data_3 = { value = var:aroai_building_type_276_collected_data
subtract = { value = var:aroai_building_type_276_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_276_collected_data_4 = { value = var:aroai_building_type_276_collected_data
subtract = { value = var:aroai_building_type_276_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_276_collected_data_5 = { value = var:aroai_building_type_276_collected_data
divide = 10000000 floor = yes }
aroai_building_type_276_collected_data_average_of_1_and_2 = { value = aroai_building_type_276_collected_data_1
add = aroai_building_type_276_collected_data_2 divide = 2 floor = yes }
aroai_building_type_277_collected_data_1 = { value = var:aroai_building_type_277_collected_data
subtract = { value = var:aroai_building_type_277_collected_data floor = yes } multiply = 100 }
aroai_building_type_277_collected_data_2 = { value = var:aroai_building_type_277_collected_data
subtract = { value = var:aroai_building_type_277_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_277_collected_data_3 = { value = var:aroai_building_type_277_collected_data
subtract = { value = var:aroai_building_type_277_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_277_collected_data_4 = { value = var:aroai_building_type_277_collected_data
subtract = { value = var:aroai_building_type_277_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_277_collected_data_5 = { value = var:aroai_building_type_277_collected_data
divide = 10000000 floor = yes }
aroai_building_type_277_collected_data_average_of_1_and_2 = { value = aroai_building_type_277_collected_data_1
add = aroai_building_type_277_collected_data_2 divide = 2 floor = yes }
aroai_building_type_278_collected_data_1 = { value = var:aroai_building_type_278_collected_data
subtract = { value = var:aroai_building_type_278_collected_data floor = yes } multiply = 100 }
aroai_building_type_278_collected_data_2 = { value = var:aroai_building_type_278_collected_data
subtract = { value = var:aroai_building_type_278_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_278_collected_data_3 = { value = var:aroai_building_type_278_collected_data
subtract = { value = var:aroai_building_type_278_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_278_collected_data_4 = { value = var:aroai_building_type_278_collected_data
subtract = { value = var:aroai_building_type_278_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_278_collected_data_5 = { value = var:aroai_building_type_278_collected_data
divide = 10000000 floor = yes }
aroai_building_type_278_collected_data_average_of_1_and_2 = { value = aroai_building_type_278_collected_data_1
add = aroai_building_type_278_collected_data_2 divide = 2 floor = yes }
aroai_building_type_279_collected_data_1 = { value = var:aroai_building_type_279_collected_data
subtract = { value = var:aroai_building_type_279_collected_data floor = yes } multiply = 100 }
aroai_building_type_279_collected_data_2 = { value = var:aroai_building_type_279_collected_data
subtract = { value = var:aroai_building_type_279_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_279_collected_data_3 = { value = var:aroai_building_type_279_collected_data
subtract = { value = var:aroai_building_type_279_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_279_collected_data_4 = { value = var:aroai_building_type_279_collected_data
subtract = { value = var:aroai_building_type_279_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_279_collected_data_5 = { value = var:aroai_building_type_279_collected_data
divide = 10000000 floor = yes }
aroai_building_type_279_collected_data_average_of_1_and_2 = { value = aroai_building_type_279_collected_data_1
add = aroai_building_type_279_collected_data_2 divide = 2 floor = yes }
aroai_building_type_280_collected_data_1 = { value = var:aroai_building_type_280_collected_data
subtract = { value = var:aroai_building_type_280_collected_data floor = yes } multiply = 100 }
aroai_building_type_280_collected_data_2 = { value = var:aroai_building_type_280_collected_data
subtract = { value = var:aroai_building_type_280_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_280_collected_data_3 = { value = var:aroai_building_type_280_collected_data
subtract = { value = var:aroai_building_type_280_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_280_collected_data_4 = { value = var:aroai_building_type_280_collected_data
subtract = { value = var:aroai_building_type_280_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_280_collected_data_5 = { value = var:aroai_building_type_280_collected_data
divide = 10000000 floor = yes }
aroai_building_type_280_collected_data_average_of_1_and_2 = { value = aroai_building_type_280_collected_data_1
add = aroai_building_type_280_collected_data_2 divide = 2 floor = yes }
aroai_building_type_281_collected_data_1 = { value = var:aroai_building_type_281_collected_data
subtract = { value = var:aroai_building_type_281_collected_data floor = yes } multiply = 100 }
aroai_building_type_281_collected_data_2 = { value = var:aroai_building_type_281_collected_data
subtract = { value = var:aroai_building_type_281_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_281_collected_data_3 = { value = var:aroai_building_type_281_collected_data
subtract = { value = var:aroai_building_type_281_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_281_collected_data_4 = { value = var:aroai_building_type_281_collected_data
subtract = { value = var:aroai_building_type_281_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_281_collected_data_5 = { value = var:aroai_building_type_281_collected_data
divide = 10000000 floor = yes }
aroai_building_type_281_collected_data_average_of_1_and_2 = { value = aroai_building_type_281_collected_data_1
add = aroai_building_type_281_collected_data_2 divide = 2 floor = yes }
aroai_building_type_282_collected_data_1 = { value = var:aroai_building_type_282_collected_data
subtract = { value = var:aroai_building_type_282_collected_data floor = yes } multiply = 100 }
aroai_building_type_282_collected_data_2 = { value = var:aroai_building_type_282_collected_data
subtract = { value = var:aroai_building_type_282_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_282_collected_data_3 = { value = var:aroai_building_type_282_collected_data
subtract = { value = var:aroai_building_type_282_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_282_collected_data_4 = { value = var:aroai_building_type_282_collected_data
subtract = { value = var:aroai_building_type_282_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_282_collected_data_5 = { value = var:aroai_building_type_282_collected_data
divide = 10000000 floor = yes }
aroai_building_type_282_collected_data_average_of_1_and_2 = { value = aroai_building_type_282_collected_data_1
add = aroai_building_type_282_collected_data_2 divide = 2 floor = yes }
aroai_building_type_283_collected_data_1 = { value = var:aroai_building_type_283_collected_data
subtract = { value = var:aroai_building_type_283_collected_data floor = yes } multiply = 100 }
aroai_building_type_283_collected_data_2 = { value = var:aroai_building_type_283_collected_data
subtract = { value = var:aroai_building_type_283_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_283_collected_data_3 = { value = var:aroai_building_type_283_collected_data
subtract = { value = var:aroai_building_type_283_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_283_collected_data_4 = { value = var:aroai_building_type_283_collected_data
subtract = { value = var:aroai_building_type_283_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_283_collected_data_5 = { value = var:aroai_building_type_283_collected_data
divide = 10000000 floor = yes }
aroai_building_type_283_collected_data_average_of_1_and_2 = { value = aroai_building_type_283_collected_data_1
add = aroai_building_type_283_collected_data_2 divide = 2 floor = yes }
aroai_building_type_284_collected_data_1 = { value = var:aroai_building_type_284_collected_data
subtract = { value = var:aroai_building_type_284_collected_data floor = yes } multiply = 100 }
aroai_building_type_284_collected_data_2 = { value = var:aroai_building_type_284_collected_data
subtract = { value = var:aroai_building_type_284_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_284_collected_data_3 = { value = var:aroai_building_type_284_collected_data
subtract = { value = var:aroai_building_type_284_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_284_collected_data_4 = { value = var:aroai_building_type_284_collected_data
subtract = { value = var:aroai_building_type_284_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_284_collected_data_5 = { value = var:aroai_building_type_284_collected_data
divide = 10000000 floor = yes }
aroai_building_type_284_collected_data_average_of_1_and_2 = { value = aroai_building_type_284_collected_data_1
add = aroai_building_type_284_collected_data_2 divide = 2 floor = yes }
aroai_building_type_285_collected_data_1 = { value = var:aroai_building_type_285_collected_data
subtract = { value = var:aroai_building_type_285_collected_data floor = yes } multiply = 100 }
aroai_building_type_285_collected_data_2 = { value = var:aroai_building_type_285_collected_data
subtract = { value = var:aroai_building_type_285_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_285_collected_data_3 = { value = var:aroai_building_type_285_collected_data
subtract = { value = var:aroai_building_type_285_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_285_collected_data_4 = { value = var:aroai_building_type_285_collected_data
subtract = { value = var:aroai_building_type_285_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_285_collected_data_5 = { value = var:aroai_building_type_285_collected_data
divide = 10000000 floor = yes }
aroai_building_type_285_collected_data_average_of_1_and_2 = { value = aroai_building_type_285_collected_data_1
add = aroai_building_type_285_collected_data_2 divide = 2 floor = yes }
aroai_building_type_286_collected_data_1 = { value = var:aroai_building_type_286_collected_data
subtract = { value = var:aroai_building_type_286_collected_data floor = yes } multiply = 100 }
aroai_building_type_286_collected_data_2 = { value = var:aroai_building_type_286_collected_data
subtract = { value = var:aroai_building_type_286_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_286_collected_data_3 = { value = var:aroai_building_type_286_collected_data
subtract = { value = var:aroai_building_type_286_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_286_collected_data_4 = { value = var:aroai_building_type_286_collected_data
subtract = { value = var:aroai_building_type_286_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_286_collected_data_5 = { value = var:aroai_building_type_286_collected_data
divide = 10000000 floor = yes }
aroai_building_type_286_collected_data_average_of_1_and_2 = { value = aroai_building_type_286_collected_data_1
add = aroai_building_type_286_collected_data_2 divide = 2 floor = yes }
aroai_building_type_287_collected_data_1 = { value = var:aroai_building_type_287_collected_data
subtract = { value = var:aroai_building_type_287_collected_data floor = yes } multiply = 100 }
aroai_building_type_287_collected_data_2 = { value = var:aroai_building_type_287_collected_data
subtract = { value = var:aroai_building_type_287_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_287_collected_data_3 = { value = var:aroai_building_type_287_collected_data
subtract = { value = var:aroai_building_type_287_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_287_collected_data_4 = { value = var:aroai_building_type_287_collected_data
subtract = { value = var:aroai_building_type_287_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_287_collected_data_5 = { value = var:aroai_building_type_287_collected_data
divide = 10000000 floor = yes }
aroai_building_type_287_collected_data_average_of_1_and_2 = { value = aroai_building_type_287_collected_data_1
add = aroai_building_type_287_collected_data_2 divide = 2 floor = yes }
aroai_building_type_288_collected_data_1 = { value = var:aroai_building_type_288_collected_data
subtract = { value = var:aroai_building_type_288_collected_data floor = yes } multiply = 100 }
aroai_building_type_288_collected_data_2 = { value = var:aroai_building_type_288_collected_data
subtract = { value = var:aroai_building_type_288_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_288_collected_data_3 = { value = var:aroai_building_type_288_collected_data
subtract = { value = var:aroai_building_type_288_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_288_collected_data_4 = { value = var:aroai_building_type_288_collected_data
subtract = { value = var:aroai_building_type_288_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_288_collected_data_5 = { value = var:aroai_building_type_288_collected_data
divide = 10000000 floor = yes }
aroai_building_type_288_collected_data_average_of_1_and_2 = { value = aroai_building_type_288_collected_data_1
add = aroai_building_type_288_collected_data_2 divide = 2 floor = yes }
aroai_building_type_289_collected_data_1 = { value = var:aroai_building_type_289_collected_data
subtract = { value = var:aroai_building_type_289_collected_data floor = yes } multiply = 100 }
aroai_building_type_289_collected_data_2 = { value = var:aroai_building_type_289_collected_data
subtract = { value = var:aroai_building_type_289_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_289_collected_data_3 = { value = var:aroai_building_type_289_collected_data
subtract = { value = var:aroai_building_type_289_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_289_collected_data_4 = { value = var:aroai_building_type_289_collected_data
subtract = { value = var:aroai_building_type_289_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_289_collected_data_5 = { value = var:aroai_building_type_289_collected_data
divide = 10000000 floor = yes }
aroai_building_type_289_collected_data_average_of_1_and_2 = { value = aroai_building_type_289_collected_data_1
add = aroai_building_type_289_collected_data_2 divide = 2 floor = yes }
aroai_building_type_290_collected_data_1 = { value = var:aroai_building_type_290_collected_data
subtract = { value = var:aroai_building_type_290_collected_data floor = yes } multiply = 100 }
aroai_building_type_290_collected_data_2 = { value = var:aroai_building_type_290_collected_data
subtract = { value = var:aroai_building_type_290_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_290_collected_data_3 = { value = var:aroai_building_type_290_collected_data
subtract = { value = var:aroai_building_type_290_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_290_collected_data_4 = { value = var:aroai_building_type_290_collected_data
subtract = { value = var:aroai_building_type_290_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_290_collected_data_5 = { value = var:aroai_building_type_290_collected_data
divide = 10000000 floor = yes }
aroai_building_type_290_collected_data_average_of_1_and_2 = { value = aroai_building_type_290_collected_data_1
add = aroai_building_type_290_collected_data_2 divide = 2 floor = yes }
aroai_building_type_291_collected_data_1 = { value = var:aroai_building_type_291_collected_data
subtract = { value = var:aroai_building_type_291_collected_data floor = yes } multiply = 100 }
aroai_building_type_291_collected_data_2 = { value = var:aroai_building_type_291_collected_data
subtract = { value = var:aroai_building_type_291_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_291_collected_data_3 = { value = var:aroai_building_type_291_collected_data
subtract = { value = var:aroai_building_type_291_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_291_collected_data_4 = { value = var:aroai_building_type_291_collected_data
subtract = { value = var:aroai_building_type_291_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_291_collected_data_5 = { value = var:aroai_building_type_291_collected_data
divide = 10000000 floor = yes }
aroai_building_type_291_collected_data_average_of_1_and_2 = { value = aroai_building_type_291_collected_data_1
add = aroai_building_type_291_collected_data_2 divide = 2 floor = yes }
aroai_building_type_292_collected_data_1 = { value = var:aroai_building_type_292_collected_data
subtract = { value = var:aroai_building_type_292_collected_data floor = yes } multiply = 100 }
aroai_building_type_292_collected_data_2 = { value = var:aroai_building_type_292_collected_data
subtract = { value = var:aroai_building_type_292_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_292_collected_data_3 = { value = var:aroai_building_type_292_collected_data
subtract = { value = var:aroai_building_type_292_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_292_collected_data_4 = { value = var:aroai_building_type_292_collected_data
subtract = { value = var:aroai_building_type_292_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_292_collected_data_5 = { value = var:aroai_building_type_292_collected_data
divide = 10000000 floor = yes }
aroai_building_type_292_collected_data_average_of_1_and_2 = { value = aroai_building_type_292_collected_data_1
add = aroai_building_type_292_collected_data_2 divide = 2 floor = yes }
aroai_building_type_293_collected_data_1 = { value = var:aroai_building_type_293_collected_data
subtract = { value = var:aroai_building_type_293_collected_data floor = yes } multiply = 100 }
aroai_building_type_293_collected_data_2 = { value = var:aroai_building_type_293_collected_data
subtract = { value = var:aroai_building_type_293_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_293_collected_data_3 = { value = var:aroai_building_type_293_collected_data
subtract = { value = var:aroai_building_type_293_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_293_collected_data_4 = { value = var:aroai_building_type_293_collected_data
subtract = { value = var:aroai_building_type_293_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_293_collected_data_5 = { value = var:aroai_building_type_293_collected_data
divide = 10000000 floor = yes }
aroai_building_type_293_collected_data_average_of_1_and_2 = { value = aroai_building_type_293_collected_data_1
add = aroai_building_type_293_collected_data_2 divide = 2 floor = yes }
aroai_building_type_294_collected_data_1 = { value = var:aroai_building_type_294_collected_data
subtract = { value = var:aroai_building_type_294_collected_data floor = yes } multiply = 100 }
aroai_building_type_294_collected_data_2 = { value = var:aroai_building_type_294_collected_data
subtract = { value = var:aroai_building_type_294_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_294_collected_data_3 = { value = var:aroai_building_type_294_collected_data
subtract = { value = var:aroai_building_type_294_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_294_collected_data_4 = { value = var:aroai_building_type_294_collected_data
subtract = { value = var:aroai_building_type_294_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_294_collected_data_5 = { value = var:aroai_building_type_294_collected_data
divide = 10000000 floor = yes }
aroai_building_type_294_collected_data_average_of_1_and_2 = { value = aroai_building_type_294_collected_data_1
add = aroai_building_type_294_collected_data_2 divide = 2 floor = yes }
aroai_building_type_295_collected_data_1 = { value = var:aroai_building_type_295_collected_data
subtract = { value = var:aroai_building_type_295_collected_data floor = yes } multiply = 100 }
aroai_building_type_295_collected_data_2 = { value = var:aroai_building_type_295_collected_data
subtract = { value = var:aroai_building_type_295_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_295_collected_data_3 = { value = var:aroai_building_type_295_collected_data
subtract = { value = var:aroai_building_type_295_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_295_collected_data_4 = { value = var:aroai_building_type_295_collected_data
subtract = { value = var:aroai_building_type_295_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_295_collected_data_5 = { value = var:aroai_building_type_295_collected_data
divide = 10000000 floor = yes }
aroai_building_type_295_collected_data_average_of_1_and_2 = { value = aroai_building_type_295_collected_data_1
add = aroai_building_type_295_collected_data_2 divide = 2 floor = yes }
aroai_building_type_296_collected_data_1 = { value = var:aroai_building_type_296_collected_data
subtract = { value = var:aroai_building_type_296_collected_data floor = yes } multiply = 100 }
aroai_building_type_296_collected_data_2 = { value = var:aroai_building_type_296_collected_data
subtract = { value = var:aroai_building_type_296_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_296_collected_data_3 = { value = var:aroai_building_type_296_collected_data
subtract = { value = var:aroai_building_type_296_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_296_collected_data_4 = { value = var:aroai_building_type_296_collected_data
subtract = { value = var:aroai_building_type_296_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_296_collected_data_5 = { value = var:aroai_building_type_296_collected_data
divide = 10000000 floor = yes }
aroai_building_type_296_collected_data_average_of_1_and_2 = { value = aroai_building_type_296_collected_data_1
add = aroai_building_type_296_collected_data_2 divide = 2 floor = yes }
aroai_building_type_297_collected_data_1 = { value = var:aroai_building_type_297_collected_data
subtract = { value = var:aroai_building_type_297_collected_data floor = yes } multiply = 100 }
aroai_building_type_297_collected_data_2 = { value = var:aroai_building_type_297_collected_data
subtract = { value = var:aroai_building_type_297_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_297_collected_data_3 = { value = var:aroai_building_type_297_collected_data
subtract = { value = var:aroai_building_type_297_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_297_collected_data_4 = { value = var:aroai_building_type_297_collected_data
subtract = { value = var:aroai_building_type_297_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_297_collected_data_5 = { value = var:aroai_building_type_297_collected_data
divide = 10000000 floor = yes }
aroai_building_type_297_collected_data_average_of_1_and_2 = { value = aroai_building_type_297_collected_data_1
add = aroai_building_type_297_collected_data_2 divide = 2 floor = yes }
aroai_building_type_298_collected_data_1 = { value = var:aroai_building_type_298_collected_data
subtract = { value = var:aroai_building_type_298_collected_data floor = yes } multiply = 100 }
aroai_building_type_298_collected_data_2 = { value = var:aroai_building_type_298_collected_data
subtract = { value = var:aroai_building_type_298_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_298_collected_data_3 = { value = var:aroai_building_type_298_collected_data
subtract = { value = var:aroai_building_type_298_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_298_collected_data_4 = { value = var:aroai_building_type_298_collected_data
subtract = { value = var:aroai_building_type_298_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_298_collected_data_5 = { value = var:aroai_building_type_298_collected_data
divide = 10000000 floor = yes }
aroai_building_type_298_collected_data_average_of_1_and_2 = { value = aroai_building_type_298_collected_data_1
add = aroai_building_type_298_collected_data_2 divide = 2 floor = yes }
aroai_building_type_299_collected_data_1 = { value = var:aroai_building_type_299_collected_data
subtract = { value = var:aroai_building_type_299_collected_data floor = yes } multiply = 100 }
aroai_building_type_299_collected_data_2 = { value = var:aroai_building_type_299_collected_data
subtract = { value = var:aroai_building_type_299_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_299_collected_data_3 = { value = var:aroai_building_type_299_collected_data
subtract = { value = var:aroai_building_type_299_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_299_collected_data_4 = { value = var:aroai_building_type_299_collected_data
subtract = { value = var:aroai_building_type_299_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_299_collected_data_5 = { value = var:aroai_building_type_299_collected_data
divide = 10000000 floor = yes }
aroai_building_type_299_collected_data_average_of_1_and_2 = { value = aroai_building_type_299_collected_data_1
add = aroai_building_type_299_collected_data_2 divide = 2 floor = yes }
aroai_building_type_300_collected_data_1 = { value = var:aroai_building_type_300_collected_data
subtract = { value = var:aroai_building_type_300_collected_data floor = yes } multiply = 100 }
aroai_building_type_300_collected_data_2 = { value = var:aroai_building_type_300_collected_data
subtract = { value = var:aroai_building_type_300_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_300_collected_data_3 = { value = var:aroai_building_type_300_collected_data
subtract = { value = var:aroai_building_type_300_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_300_collected_data_4 = { value = var:aroai_building_type_300_collected_data
subtract = { value = var:aroai_building_type_300_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_300_collected_data_5 = { value = var:aroai_building_type_300_collected_data
divide = 10000000 floor = yes }
aroai_building_type_300_collected_data_average_of_1_and_2 = { value = aroai_building_type_300_collected_data_1
add = aroai_building_type_300_collected_data_2 divide = 2 floor = yes }
aroai_building_type_301_collected_data_1 = { value = var:aroai_building_type_301_collected_data
subtract = { value = var:aroai_building_type_301_collected_data floor = yes } multiply = 100 }
aroai_building_type_301_collected_data_2 = { value = var:aroai_building_type_301_collected_data
subtract = { value = var:aroai_building_type_301_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_301_collected_data_3 = { value = var:aroai_building_type_301_collected_data
subtract = { value = var:aroai_building_type_301_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_301_collected_data_4 = { value = var:aroai_building_type_301_collected_data
subtract = { value = var:aroai_building_type_301_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_301_collected_data_5 = { value = var:aroai_building_type_301_collected_data
divide = 10000000 floor = yes }
aroai_building_type_301_collected_data_average_of_1_and_2 = { value = aroai_building_type_301_collected_data_1
add = aroai_building_type_301_collected_data_2 divide = 2 floor = yes }
aroai_building_type_302_collected_data_1 = { value = var:aroai_building_type_302_collected_data
subtract = { value = var:aroai_building_type_302_collected_data floor = yes } multiply = 100 }
aroai_building_type_302_collected_data_2 = { value = var:aroai_building_type_302_collected_data
subtract = { value = var:aroai_building_type_302_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_302_collected_data_3 = { value = var:aroai_building_type_302_collected_data
subtract = { value = var:aroai_building_type_302_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_302_collected_data_4 = { value = var:aroai_building_type_302_collected_data
subtract = { value = var:aroai_building_type_302_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_302_collected_data_5 = { value = var:aroai_building_type_302_collected_data
divide = 10000000 floor = yes }
aroai_building_type_302_collected_data_average_of_1_and_2 = { value = aroai_building_type_302_collected_data_1
add = aroai_building_type_302_collected_data_2 divide = 2 floor = yes }
aroai_building_type_303_collected_data_1 = { value = var:aroai_building_type_303_collected_data
subtract = { value = var:aroai_building_type_303_collected_data floor = yes } multiply = 100 }
aroai_building_type_303_collected_data_2 = { value = var:aroai_building_type_303_collected_data
subtract = { value = var:aroai_building_type_303_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_303_collected_data_3 = { value = var:aroai_building_type_303_collected_data
subtract = { value = var:aroai_building_type_303_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_303_collected_data_4 = { value = var:aroai_building_type_303_collected_data
subtract = { value = var:aroai_building_type_303_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_303_collected_data_5 = { value = var:aroai_building_type_303_collected_data
divide = 10000000 floor = yes }
aroai_building_type_303_collected_data_average_of_1_and_2 = { value = aroai_building_type_303_collected_data_1
add = aroai_building_type_303_collected_data_2 divide = 2 floor = yes }
aroai_building_type_304_collected_data_1 = { value = var:aroai_building_type_304_collected_data
subtract = { value = var:aroai_building_type_304_collected_data floor = yes } multiply = 100 }
aroai_building_type_304_collected_data_2 = { value = var:aroai_building_type_304_collected_data
subtract = { value = var:aroai_building_type_304_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_304_collected_data_3 = { value = var:aroai_building_type_304_collected_data
subtract = { value = var:aroai_building_type_304_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_304_collected_data_4 = { value = var:aroai_building_type_304_collected_data
subtract = { value = var:aroai_building_type_304_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_304_collected_data_5 = { value = var:aroai_building_type_304_collected_data
divide = 10000000 floor = yes }
aroai_building_type_304_collected_data_average_of_1_and_2 = { value = aroai_building_type_304_collected_data_1
add = aroai_building_type_304_collected_data_2 divide = 2 floor = yes }
aroai_building_type_305_collected_data_1 = { value = var:aroai_building_type_305_collected_data
subtract = { value = var:aroai_building_type_305_collected_data floor = yes } multiply = 100 }
aroai_building_type_305_collected_data_2 = { value = var:aroai_building_type_305_collected_data
subtract = { value = var:aroai_building_type_305_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_305_collected_data_3 = { value = var:aroai_building_type_305_collected_data
subtract = { value = var:aroai_building_type_305_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_305_collected_data_4 = { value = var:aroai_building_type_305_collected_data
subtract = { value = var:aroai_building_type_305_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_305_collected_data_5 = { value = var:aroai_building_type_305_collected_data
divide = 10000000 floor = yes }
aroai_building_type_305_collected_data_average_of_1_and_2 = { value = aroai_building_type_305_collected_data_1
add = aroai_building_type_305_collected_data_2 divide = 2 floor = yes }
aroai_building_type_306_collected_data_1 = { value = var:aroai_building_type_306_collected_data
subtract = { value = var:aroai_building_type_306_collected_data floor = yes } multiply = 100 }
aroai_building_type_306_collected_data_2 = { value = var:aroai_building_type_306_collected_data
subtract = { value = var:aroai_building_type_306_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_306_collected_data_3 = { value = var:aroai_building_type_306_collected_data
subtract = { value = var:aroai_building_type_306_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_306_collected_data_4 = { value = var:aroai_building_type_306_collected_data
subtract = { value = var:aroai_building_type_306_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_306_collected_data_5 = { value = var:aroai_building_type_306_collected_data
divide = 10000000 floor = yes }
aroai_building_type_306_collected_data_average_of_1_and_2 = { value = aroai_building_type_306_collected_data_1
add = aroai_building_type_306_collected_data_2 divide = 2 floor = yes }
aroai_building_type_307_collected_data_1 = { value = var:aroai_building_type_307_collected_data
subtract = { value = var:aroai_building_type_307_collected_data floor = yes } multiply = 100 }
aroai_building_type_307_collected_data_2 = { value = var:aroai_building_type_307_collected_data
subtract = { value = var:aroai_building_type_307_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_307_collected_data_3 = { value = var:aroai_building_type_307_collected_data
subtract = { value = var:aroai_building_type_307_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_307_collected_data_4 = { value = var:aroai_building_type_307_collected_data
subtract = { value = var:aroai_building_type_307_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_307_collected_data_5 = { value = var:aroai_building_type_307_collected_data
divide = 10000000 floor = yes }
aroai_building_type_307_collected_data_average_of_1_and_2 = { value = aroai_building_type_307_collected_data_1
add = aroai_building_type_307_collected_data_2 divide = 2 floor = yes }
aroai_building_type_308_collected_data_1 = { value = var:aroai_building_type_308_collected_data
subtract = { value = var:aroai_building_type_308_collected_data floor = yes } multiply = 100 }
aroai_building_type_308_collected_data_2 = { value = var:aroai_building_type_308_collected_data
subtract = { value = var:aroai_building_type_308_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_308_collected_data_3 = { value = var:aroai_building_type_308_collected_data
subtract = { value = var:aroai_building_type_308_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_308_collected_data_4 = { value = var:aroai_building_type_308_collected_data
subtract = { value = var:aroai_building_type_308_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_308_collected_data_5 = { value = var:aroai_building_type_308_collected_data
divide = 10000000 floor = yes }
aroai_building_type_308_collected_data_average_of_1_and_2 = { value = aroai_building_type_308_collected_data_1
add = aroai_building_type_308_collected_data_2 divide = 2 floor = yes }
aroai_building_type_309_collected_data_1 = { value = var:aroai_building_type_309_collected_data
subtract = { value = var:aroai_building_type_309_collected_data floor = yes } multiply = 100 }
aroai_building_type_309_collected_data_2 = { value = var:aroai_building_type_309_collected_data
subtract = { value = var:aroai_building_type_309_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_309_collected_data_3 = { value = var:aroai_building_type_309_collected_data
subtract = { value = var:aroai_building_type_309_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_309_collected_data_4 = { value = var:aroai_building_type_309_collected_data
subtract = { value = var:aroai_building_type_309_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_309_collected_data_5 = { value = var:aroai_building_type_309_collected_data
divide = 10000000 floor = yes }
aroai_building_type_309_collected_data_average_of_1_and_2 = { value = aroai_building_type_309_collected_data_1
add = aroai_building_type_309_collected_data_2 divide = 2 floor = yes }
aroai_building_type_310_collected_data_1 = { value = var:aroai_building_type_310_collected_data
subtract = { value = var:aroai_building_type_310_collected_data floor = yes } multiply = 100 }
aroai_building_type_310_collected_data_2 = { value = var:aroai_building_type_310_collected_data
subtract = { value = var:aroai_building_type_310_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_310_collected_data_3 = { value = var:aroai_building_type_310_collected_data
subtract = { value = var:aroai_building_type_310_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_310_collected_data_4 = { value = var:aroai_building_type_310_collected_data
subtract = { value = var:aroai_building_type_310_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_310_collected_data_5 = { value = var:aroai_building_type_310_collected_data
divide = 10000000 floor = yes }
aroai_building_type_310_collected_data_average_of_1_and_2 = { value = aroai_building_type_310_collected_data_1
add = aroai_building_type_310_collected_data_2 divide = 2 floor = yes }
aroai_building_type_311_collected_data_1 = { value = var:aroai_building_type_311_collected_data
subtract = { value = var:aroai_building_type_311_collected_data floor = yes } multiply = 100 }
aroai_building_type_311_collected_data_2 = { value = var:aroai_building_type_311_collected_data
subtract = { value = var:aroai_building_type_311_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_311_collected_data_3 = { value = var:aroai_building_type_311_collected_data
subtract = { value = var:aroai_building_type_311_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_311_collected_data_4 = { value = var:aroai_building_type_311_collected_data
subtract = { value = var:aroai_building_type_311_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_311_collected_data_5 = { value = var:aroai_building_type_311_collected_data
divide = 10000000 floor = yes }
aroai_building_type_311_collected_data_average_of_1_and_2 = { value = aroai_building_type_311_collected_data_1
add = aroai_building_type_311_collected_data_2 divide = 2 floor = yes }
aroai_building_type_312_collected_data_1 = { value = var:aroai_building_type_312_collected_data
subtract = { value = var:aroai_building_type_312_collected_data floor = yes } multiply = 100 }
aroai_building_type_312_collected_data_2 = { value = var:aroai_building_type_312_collected_data
subtract = { value = var:aroai_building_type_312_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_312_collected_data_3 = { value = var:aroai_building_type_312_collected_data
subtract = { value = var:aroai_building_type_312_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_312_collected_data_4 = { value = var:aroai_building_type_312_collected_data
subtract = { value = var:aroai_building_type_312_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_312_collected_data_5 = { value = var:aroai_building_type_312_collected_data
divide = 10000000 floor = yes }
aroai_building_type_312_collected_data_average_of_1_and_2 = { value = aroai_building_type_312_collected_data_1
add = aroai_building_type_312_collected_data_2 divide = 2 floor = yes }
aroai_building_type_313_collected_data_1 = { value = var:aroai_building_type_313_collected_data
subtract = { value = var:aroai_building_type_313_collected_data floor = yes } multiply = 100 }
aroai_building_type_313_collected_data_2 = { value = var:aroai_building_type_313_collected_data
subtract = { value = var:aroai_building_type_313_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_313_collected_data_3 = { value = var:aroai_building_type_313_collected_data
subtract = { value = var:aroai_building_type_313_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_313_collected_data_4 = { value = var:aroai_building_type_313_collected_data
subtract = { value = var:aroai_building_type_313_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_313_collected_data_5 = { value = var:aroai_building_type_313_collected_data
divide = 10000000 floor = yes }
aroai_building_type_313_collected_data_average_of_1_and_2 = { value = aroai_building_type_313_collected_data_1
add = aroai_building_type_313_collected_data_2 divide = 2 floor = yes }
aroai_building_type_314_collected_data_1 = { value = var:aroai_building_type_314_collected_data
subtract = { value = var:aroai_building_type_314_collected_data floor = yes } multiply = 100 }
aroai_building_type_314_collected_data_2 = { value = var:aroai_building_type_314_collected_data
subtract = { value = var:aroai_building_type_314_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_314_collected_data_3 = { value = var:aroai_building_type_314_collected_data
subtract = { value = var:aroai_building_type_314_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_314_collected_data_4 = { value = var:aroai_building_type_314_collected_data
subtract = { value = var:aroai_building_type_314_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_314_collected_data_5 = { value = var:aroai_building_type_314_collected_data
divide = 10000000 floor = yes }
aroai_building_type_314_collected_data_average_of_1_and_2 = { value = aroai_building_type_314_collected_data_1
add = aroai_building_type_314_collected_data_2 divide = 2 floor = yes }
aroai_building_type_315_collected_data_1 = { value = var:aroai_building_type_315_collected_data
subtract = { value = var:aroai_building_type_315_collected_data floor = yes } multiply = 100 }
aroai_building_type_315_collected_data_2 = { value = var:aroai_building_type_315_collected_data
subtract = { value = var:aroai_building_type_315_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_315_collected_data_3 = { value = var:aroai_building_type_315_collected_data
subtract = { value = var:aroai_building_type_315_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_315_collected_data_4 = { value = var:aroai_building_type_315_collected_data
subtract = { value = var:aroai_building_type_315_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_315_collected_data_5 = { value = var:aroai_building_type_315_collected_data
divide = 10000000 floor = yes }
aroai_building_type_315_collected_data_average_of_1_and_2 = { value = aroai_building_type_315_collected_data_1
add = aroai_building_type_315_collected_data_2 divide = 2 floor = yes }
aroai_building_type_316_collected_data_1 = { value = var:aroai_building_type_316_collected_data
subtract = { value = var:aroai_building_type_316_collected_data floor = yes } multiply = 100 }
aroai_building_type_316_collected_data_2 = { value = var:aroai_building_type_316_collected_data
subtract = { value = var:aroai_building_type_316_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_316_collected_data_3 = { value = var:aroai_building_type_316_collected_data
subtract = { value = var:aroai_building_type_316_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_316_collected_data_4 = { value = var:aroai_building_type_316_collected_data
subtract = { value = var:aroai_building_type_316_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_316_collected_data_5 = { value = var:aroai_building_type_316_collected_data
divide = 10000000 floor = yes }
aroai_building_type_316_collected_data_average_of_1_and_2 = { value = aroai_building_type_316_collected_data_1
add = aroai_building_type_316_collected_data_2 divide = 2 floor = yes }
aroai_building_type_317_collected_data_1 = { value = var:aroai_building_type_317_collected_data
subtract = { value = var:aroai_building_type_317_collected_data floor = yes } multiply = 100 }
aroai_building_type_317_collected_data_2 = { value = var:aroai_building_type_317_collected_data
subtract = { value = var:aroai_building_type_317_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_317_collected_data_3 = { value = var:aroai_building_type_317_collected_data
subtract = { value = var:aroai_building_type_317_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_317_collected_data_4 = { value = var:aroai_building_type_317_collected_data
subtract = { value = var:aroai_building_type_317_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_317_collected_data_5 = { value = var:aroai_building_type_317_collected_data
divide = 10000000 floor = yes }
aroai_building_type_317_collected_data_average_of_1_and_2 = { value = aroai_building_type_317_collected_data_1
add = aroai_building_type_317_collected_data_2 divide = 2 floor = yes }
aroai_building_type_318_collected_data_1 = { value = var:aroai_building_type_318_collected_data
subtract = { value = var:aroai_building_type_318_collected_data floor = yes } multiply = 100 }
aroai_building_type_318_collected_data_2 = { value = var:aroai_building_type_318_collected_data
subtract = { value = var:aroai_building_type_318_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_318_collected_data_3 = { value = var:aroai_building_type_318_collected_data
subtract = { value = var:aroai_building_type_318_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_318_collected_data_4 = { value = var:aroai_building_type_318_collected_data
subtract = { value = var:aroai_building_type_318_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_318_collected_data_5 = { value = var:aroai_building_type_318_collected_data
divide = 10000000 floor = yes }
aroai_building_type_318_collected_data_average_of_1_and_2 = { value = aroai_building_type_318_collected_data_1
add = aroai_building_type_318_collected_data_2 divide = 2 floor = yes }
aroai_building_type_319_collected_data_1 = { value = var:aroai_building_type_319_collected_data
subtract = { value = var:aroai_building_type_319_collected_data floor = yes } multiply = 100 }
aroai_building_type_319_collected_data_2 = { value = var:aroai_building_type_319_collected_data
subtract = { value = var:aroai_building_type_319_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_319_collected_data_3 = { value = var:aroai_building_type_319_collected_data
subtract = { value = var:aroai_building_type_319_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_319_collected_data_4 = { value = var:aroai_building_type_319_collected_data
subtract = { value = var:aroai_building_type_319_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_319_collected_data_5 = { value = var:aroai_building_type_319_collected_data
divide = 10000000 floor = yes }
aroai_building_type_319_collected_data_average_of_1_and_2 = { value = aroai_building_type_319_collected_data_1
add = aroai_building_type_319_collected_data_2 divide = 2 floor = yes }
aroai_building_type_320_collected_data_1 = { value = var:aroai_building_type_320_collected_data
subtract = { value = var:aroai_building_type_320_collected_data floor = yes } multiply = 100 }
aroai_building_type_320_collected_data_2 = { value = var:aroai_building_type_320_collected_data
subtract = { value = var:aroai_building_type_320_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_320_collected_data_3 = { value = var:aroai_building_type_320_collected_data
subtract = { value = var:aroai_building_type_320_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_320_collected_data_4 = { value = var:aroai_building_type_320_collected_data
subtract = { value = var:aroai_building_type_320_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_320_collected_data_5 = { value = var:aroai_building_type_320_collected_data
divide = 10000000 floor = yes }
aroai_building_type_320_collected_data_average_of_1_and_2 = { value = aroai_building_type_320_collected_data_1
add = aroai_building_type_320_collected_data_2 divide = 2 floor = yes }
aroai_building_type_321_collected_data_1 = { value = var:aroai_building_type_321_collected_data
subtract = { value = var:aroai_building_type_321_collected_data floor = yes } multiply = 100 }
aroai_building_type_321_collected_data_2 = { value = var:aroai_building_type_321_collected_data
subtract = { value = var:aroai_building_type_321_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_321_collected_data_3 = { value = var:aroai_building_type_321_collected_data
subtract = { value = var:aroai_building_type_321_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_321_collected_data_4 = { value = var:aroai_building_type_321_collected_data
subtract = { value = var:aroai_building_type_321_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_321_collected_data_5 = { value = var:aroai_building_type_321_collected_data
divide = 10000000 floor = yes }
aroai_building_type_321_collected_data_average_of_1_and_2 = { value = aroai_building_type_321_collected_data_1
add = aroai_building_type_321_collected_data_2 divide = 2 floor = yes }
aroai_building_type_322_collected_data_1 = { value = var:aroai_building_type_322_collected_data
subtract = { value = var:aroai_building_type_322_collected_data floor = yes } multiply = 100 }
aroai_building_type_322_collected_data_2 = { value = var:aroai_building_type_322_collected_data
subtract = { value = var:aroai_building_type_322_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_322_collected_data_3 = { value = var:aroai_building_type_322_collected_data
subtract = { value = var:aroai_building_type_322_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_322_collected_data_4 = { value = var:aroai_building_type_322_collected_data
subtract = { value = var:aroai_building_type_322_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_322_collected_data_5 = { value = var:aroai_building_type_322_collected_data
divide = 10000000 floor = yes }
aroai_building_type_322_collected_data_average_of_1_and_2 = { value = aroai_building_type_322_collected_data_1
add = aroai_building_type_322_collected_data_2 divide = 2 floor = yes }
aroai_building_type_323_collected_data_1 = { value = var:aroai_building_type_323_collected_data
subtract = { value = var:aroai_building_type_323_collected_data floor = yes } multiply = 100 }
aroai_building_type_323_collected_data_2 = { value = var:aroai_building_type_323_collected_data
subtract = { value = var:aroai_building_type_323_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_323_collected_data_3 = { value = var:aroai_building_type_323_collected_data
subtract = { value = var:aroai_building_type_323_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_323_collected_data_4 = { value = var:aroai_building_type_323_collected_data
subtract = { value = var:aroai_building_type_323_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_323_collected_data_5 = { value = var:aroai_building_type_323_collected_data
divide = 10000000 floor = yes }
aroai_building_type_323_collected_data_average_of_1_and_2 = { value = aroai_building_type_323_collected_data_1
add = aroai_building_type_323_collected_data_2 divide = 2 floor = yes }
aroai_building_type_324_collected_data_1 = { value = var:aroai_building_type_324_collected_data
subtract = { value = var:aroai_building_type_324_collected_data floor = yes } multiply = 100 }
aroai_building_type_324_collected_data_2 = { value = var:aroai_building_type_324_collected_data
subtract = { value = var:aroai_building_type_324_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_324_collected_data_3 = { value = var:aroai_building_type_324_collected_data
subtract = { value = var:aroai_building_type_324_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_324_collected_data_4 = { value = var:aroai_building_type_324_collected_data
subtract = { value = var:aroai_building_type_324_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_324_collected_data_5 = { value = var:aroai_building_type_324_collected_data
divide = 10000000 floor = yes }
aroai_building_type_324_collected_data_average_of_1_and_2 = { value = aroai_building_type_324_collected_data_1
add = aroai_building_type_324_collected_data_2 divide = 2 floor = yes }
aroai_building_type_325_collected_data_1 = { value = var:aroai_building_type_325_collected_data
subtract = { value = var:aroai_building_type_325_collected_data floor = yes } multiply = 100 }
aroai_building_type_325_collected_data_2 = { value = var:aroai_building_type_325_collected_data
subtract = { value = var:aroai_building_type_325_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_325_collected_data_3 = { value = var:aroai_building_type_325_collected_data
subtract = { value = var:aroai_building_type_325_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_325_collected_data_4 = { value = var:aroai_building_type_325_collected_data
subtract = { value = var:aroai_building_type_325_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_325_collected_data_5 = { value = var:aroai_building_type_325_collected_data
divide = 10000000 floor = yes }
aroai_building_type_325_collected_data_average_of_1_and_2 = { value = aroai_building_type_325_collected_data_1
add = aroai_building_type_325_collected_data_2 divide = 2 floor = yes }
aroai_building_type_326_collected_data_1 = { value = var:aroai_building_type_326_collected_data
subtract = { value = var:aroai_building_type_326_collected_data floor = yes } multiply = 100 }
aroai_building_type_326_collected_data_2 = { value = var:aroai_building_type_326_collected_data
subtract = { value = var:aroai_building_type_326_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_326_collected_data_3 = { value = var:aroai_building_type_326_collected_data
subtract = { value = var:aroai_building_type_326_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_326_collected_data_4 = { value = var:aroai_building_type_326_collected_data
subtract = { value = var:aroai_building_type_326_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_326_collected_data_5 = { value = var:aroai_building_type_326_collected_data
divide = 10000000 floor = yes }
aroai_building_type_326_collected_data_average_of_1_and_2 = { value = aroai_building_type_326_collected_data_1
add = aroai_building_type_326_collected_data_2 divide = 2 floor = yes }
aroai_building_type_327_collected_data_1 = { value = var:aroai_building_type_327_collected_data
subtract = { value = var:aroai_building_type_327_collected_data floor = yes } multiply = 100 }
aroai_building_type_327_collected_data_2 = { value = var:aroai_building_type_327_collected_data
subtract = { value = var:aroai_building_type_327_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_327_collected_data_3 = { value = var:aroai_building_type_327_collected_data
subtract = { value = var:aroai_building_type_327_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_327_collected_data_4 = { value = var:aroai_building_type_327_collected_data
subtract = { value = var:aroai_building_type_327_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_327_collected_data_5 = { value = var:aroai_building_type_327_collected_data
divide = 10000000 floor = yes }
aroai_building_type_327_collected_data_average_of_1_and_2 = { value = aroai_building_type_327_collected_data_1
add = aroai_building_type_327_collected_data_2 divide = 2 floor = yes }
aroai_building_type_328_collected_data_1 = { value = var:aroai_building_type_328_collected_data
subtract = { value = var:aroai_building_type_328_collected_data floor = yes } multiply = 100 }
aroai_building_type_328_collected_data_2 = { value = var:aroai_building_type_328_collected_data
subtract = { value = var:aroai_building_type_328_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_328_collected_data_3 = { value = var:aroai_building_type_328_collected_data
subtract = { value = var:aroai_building_type_328_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_328_collected_data_4 = { value = var:aroai_building_type_328_collected_data
subtract = { value = var:aroai_building_type_328_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_328_collected_data_5 = { value = var:aroai_building_type_328_collected_data
divide = 10000000 floor = yes }
aroai_building_type_328_collected_data_average_of_1_and_2 = { value = aroai_building_type_328_collected_data_1
add = aroai_building_type_328_collected_data_2 divide = 2 floor = yes }
aroai_building_type_329_collected_data_1 = { value = var:aroai_building_type_329_collected_data
subtract = { value = var:aroai_building_type_329_collected_data floor = yes } multiply = 100 }
aroai_building_type_329_collected_data_2 = { value = var:aroai_building_type_329_collected_data
subtract = { value = var:aroai_building_type_329_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_329_collected_data_3 = { value = var:aroai_building_type_329_collected_data
subtract = { value = var:aroai_building_type_329_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_329_collected_data_4 = { value = var:aroai_building_type_329_collected_data
subtract = { value = var:aroai_building_type_329_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_329_collected_data_5 = { value = var:aroai_building_type_329_collected_data
divide = 10000000 floor = yes }
aroai_building_type_329_collected_data_average_of_1_and_2 = { value = aroai_building_type_329_collected_data_1
add = aroai_building_type_329_collected_data_2 divide = 2 floor = yes }
aroai_building_type_330_collected_data_1 = { value = var:aroai_building_type_330_collected_data
subtract = { value = var:aroai_building_type_330_collected_data floor = yes } multiply = 100 }
aroai_building_type_330_collected_data_2 = { value = var:aroai_building_type_330_collected_data
subtract = { value = var:aroai_building_type_330_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_330_collected_data_3 = { value = var:aroai_building_type_330_collected_data
subtract = { value = var:aroai_building_type_330_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_330_collected_data_4 = { value = var:aroai_building_type_330_collected_data
subtract = { value = var:aroai_building_type_330_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_330_collected_data_5 = { value = var:aroai_building_type_330_collected_data
divide = 10000000 floor = yes }
aroai_building_type_330_collected_data_average_of_1_and_2 = { value = aroai_building_type_330_collected_data_1
add = aroai_building_type_330_collected_data_2 divide = 2 floor = yes }
aroai_building_type_331_collected_data_1 = { value = var:aroai_building_type_331_collected_data
subtract = { value = var:aroai_building_type_331_collected_data floor = yes } multiply = 100 }
aroai_building_type_331_collected_data_2 = { value = var:aroai_building_type_331_collected_data
subtract = { value = var:aroai_building_type_331_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_331_collected_data_3 = { value = var:aroai_building_type_331_collected_data
subtract = { value = var:aroai_building_type_331_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_331_collected_data_4 = { value = var:aroai_building_type_331_collected_data
subtract = { value = var:aroai_building_type_331_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_331_collected_data_5 = { value = var:aroai_building_type_331_collected_data
divide = 10000000 floor = yes }
aroai_building_type_331_collected_data_average_of_1_and_2 = { value = aroai_building_type_331_collected_data_1
add = aroai_building_type_331_collected_data_2 divide = 2 floor = yes }
aroai_building_type_332_collected_data_1 = { value = var:aroai_building_type_332_collected_data
subtract = { value = var:aroai_building_type_332_collected_data floor = yes } multiply = 100 }
aroai_building_type_332_collected_data_2 = { value = var:aroai_building_type_332_collected_data
subtract = { value = var:aroai_building_type_332_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_332_collected_data_3 = { value = var:aroai_building_type_332_collected_data
subtract = { value = var:aroai_building_type_332_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_332_collected_data_4 = { value = var:aroai_building_type_332_collected_data
subtract = { value = var:aroai_building_type_332_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_332_collected_data_5 = { value = var:aroai_building_type_332_collected_data
divide = 10000000 floor = yes }
aroai_building_type_332_collected_data_average_of_1_and_2 = { value = aroai_building_type_332_collected_data_1
add = aroai_building_type_332_collected_data_2 divide = 2 floor = yes }
aroai_building_type_333_collected_data_1 = { value = var:aroai_building_type_333_collected_data
subtract = { value = var:aroai_building_type_333_collected_data floor = yes } multiply = 100 }
aroai_building_type_333_collected_data_2 = { value = var:aroai_building_type_333_collected_data
subtract = { value = var:aroai_building_type_333_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_333_collected_data_3 = { value = var:aroai_building_type_333_collected_data
subtract = { value = var:aroai_building_type_333_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_333_collected_data_4 = { value = var:aroai_building_type_333_collected_data
subtract = { value = var:aroai_building_type_333_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_333_collected_data_5 = { value = var:aroai_building_type_333_collected_data
divide = 10000000 floor = yes }
aroai_building_type_333_collected_data_average_of_1_and_2 = { value = aroai_building_type_333_collected_data_1
add = aroai_building_type_333_collected_data_2 divide = 2 floor = yes }
aroai_building_type_334_collected_data_1 = { value = var:aroai_building_type_334_collected_data
subtract = { value = var:aroai_building_type_334_collected_data floor = yes } multiply = 100 }
aroai_building_type_334_collected_data_2 = { value = var:aroai_building_type_334_collected_data
subtract = { value = var:aroai_building_type_334_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_334_collected_data_3 = { value = var:aroai_building_type_334_collected_data
subtract = { value = var:aroai_building_type_334_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_334_collected_data_4 = { value = var:aroai_building_type_334_collected_data
subtract = { value = var:aroai_building_type_334_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_334_collected_data_5 = { value = var:aroai_building_type_334_collected_data
divide = 10000000 floor = yes }
aroai_building_type_334_collected_data_average_of_1_and_2 = { value = aroai_building_type_334_collected_data_1
add = aroai_building_type_334_collected_data_2 divide = 2 floor = yes }
aroai_building_type_335_collected_data_1 = { value = var:aroai_building_type_335_collected_data
subtract = { value = var:aroai_building_type_335_collected_data floor = yes } multiply = 100 }
aroai_building_type_335_collected_data_2 = { value = var:aroai_building_type_335_collected_data
subtract = { value = var:aroai_building_type_335_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_335_collected_data_3 = { value = var:aroai_building_type_335_collected_data
subtract = { value = var:aroai_building_type_335_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_335_collected_data_4 = { value = var:aroai_building_type_335_collected_data
subtract = { value = var:aroai_building_type_335_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_335_collected_data_5 = { value = var:aroai_building_type_335_collected_data
divide = 10000000 floor = yes }
aroai_building_type_335_collected_data_average_of_1_and_2 = { value = aroai_building_type_335_collected_data_1
add = aroai_building_type_335_collected_data_2 divide = 2 floor = yes }
aroai_building_type_336_collected_data_1 = { value = var:aroai_building_type_336_collected_data
subtract = { value = var:aroai_building_type_336_collected_data floor = yes } multiply = 100 }
aroai_building_type_336_collected_data_2 = { value = var:aroai_building_type_336_collected_data
subtract = { value = var:aroai_building_type_336_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_336_collected_data_3 = { value = var:aroai_building_type_336_collected_data
subtract = { value = var:aroai_building_type_336_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_336_collected_data_4 = { value = var:aroai_building_type_336_collected_data
subtract = { value = var:aroai_building_type_336_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_336_collected_data_5 = { value = var:aroai_building_type_336_collected_data
divide = 10000000 floor = yes }
aroai_building_type_336_collected_data_average_of_1_and_2 = { value = aroai_building_type_336_collected_data_1
add = aroai_building_type_336_collected_data_2 divide = 2 floor = yes }
aroai_building_type_337_collected_data_1 = { value = var:aroai_building_type_337_collected_data
subtract = { value = var:aroai_building_type_337_collected_data floor = yes } multiply = 100 }
aroai_building_type_337_collected_data_2 = { value = var:aroai_building_type_337_collected_data
subtract = { value = var:aroai_building_type_337_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_337_collected_data_3 = { value = var:aroai_building_type_337_collected_data
subtract = { value = var:aroai_building_type_337_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_337_collected_data_4 = { value = var:aroai_building_type_337_collected_data
subtract = { value = var:aroai_building_type_337_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_337_collected_data_5 = { value = var:aroai_building_type_337_collected_data
divide = 10000000 floor = yes }
aroai_building_type_337_collected_data_average_of_1_and_2 = { value = aroai_building_type_337_collected_data_1
add = aroai_building_type_337_collected_data_2 divide = 2 floor = yes }
aroai_building_type_338_collected_data_1 = { value = var:aroai_building_type_338_collected_data
subtract = { value = var:aroai_building_type_338_collected_data floor = yes } multiply = 100 }
aroai_building_type_338_collected_data_2 = { value = var:aroai_building_type_338_collected_data
subtract = { value = var:aroai_building_type_338_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_338_collected_data_3 = { value = var:aroai_building_type_338_collected_data
subtract = { value = var:aroai_building_type_338_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_338_collected_data_4 = { value = var:aroai_building_type_338_collected_data
subtract = { value = var:aroai_building_type_338_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_338_collected_data_5 = { value = var:aroai_building_type_338_collected_data
divide = 10000000 floor = yes }
aroai_building_type_338_collected_data_average_of_1_and_2 = { value = aroai_building_type_338_collected_data_1
add = aroai_building_type_338_collected_data_2 divide = 2 floor = yes }
aroai_building_type_339_collected_data_1 = { value = var:aroai_building_type_339_collected_data
subtract = { value = var:aroai_building_type_339_collected_data floor = yes } multiply = 100 }
aroai_building_type_339_collected_data_2 = { value = var:aroai_building_type_339_collected_data
subtract = { value = var:aroai_building_type_339_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_339_collected_data_3 = { value = var:aroai_building_type_339_collected_data
subtract = { value = var:aroai_building_type_339_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_339_collected_data_4 = { value = var:aroai_building_type_339_collected_data
subtract = { value = var:aroai_building_type_339_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_339_collected_data_5 = { value = var:aroai_building_type_339_collected_data
divide = 10000000 floor = yes }
aroai_building_type_339_collected_data_average_of_1_and_2 = { value = aroai_building_type_339_collected_data_1
add = aroai_building_type_339_collected_data_2 divide = 2 floor = yes }
aroai_building_type_340_collected_data_1 = { value = var:aroai_building_type_340_collected_data
subtract = { value = var:aroai_building_type_340_collected_data floor = yes } multiply = 100 }
aroai_building_type_340_collected_data_2 = { value = var:aroai_building_type_340_collected_data
subtract = { value = var:aroai_building_type_340_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_340_collected_data_3 = { value = var:aroai_building_type_340_collected_data
subtract = { value = var:aroai_building_type_340_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_340_collected_data_4 = { value = var:aroai_building_type_340_collected_data
subtract = { value = var:aroai_building_type_340_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_340_collected_data_5 = { value = var:aroai_building_type_340_collected_data
divide = 10000000 floor = yes }
aroai_building_type_340_collected_data_average_of_1_and_2 = { value = aroai_building_type_340_collected_data_1
add = aroai_building_type_340_collected_data_2 divide = 2 floor = yes }
aroai_building_type_341_collected_data_1 = { value = var:aroai_building_type_341_collected_data
subtract = { value = var:aroai_building_type_341_collected_data floor = yes } multiply = 100 }
aroai_building_type_341_collected_data_2 = { value = var:aroai_building_type_341_collected_data
subtract = { value = var:aroai_building_type_341_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_341_collected_data_3 = { value = var:aroai_building_type_341_collected_data
subtract = { value = var:aroai_building_type_341_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_341_collected_data_4 = { value = var:aroai_building_type_341_collected_data
subtract = { value = var:aroai_building_type_341_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_341_collected_data_5 = { value = var:aroai_building_type_341_collected_data
divide = 10000000 floor = yes }
aroai_building_type_341_collected_data_average_of_1_and_2 = { value = aroai_building_type_341_collected_data_1
add = aroai_building_type_341_collected_data_2 divide = 2 floor = yes }
aroai_building_type_342_collected_data_1 = { value = var:aroai_building_type_342_collected_data
subtract = { value = var:aroai_building_type_342_collected_data floor = yes } multiply = 100 }
aroai_building_type_342_collected_data_2 = { value = var:aroai_building_type_342_collected_data
subtract = { value = var:aroai_building_type_342_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_342_collected_data_3 = { value = var:aroai_building_type_342_collected_data
subtract = { value = var:aroai_building_type_342_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_342_collected_data_4 = { value = var:aroai_building_type_342_collected_data
subtract = { value = var:aroai_building_type_342_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_342_collected_data_5 = { value = var:aroai_building_type_342_collected_data
divide = 10000000 floor = yes }
aroai_building_type_342_collected_data_average_of_1_and_2 = { value = aroai_building_type_342_collected_data_1
add = aroai_building_type_342_collected_data_2 divide = 2 floor = yes }
aroai_building_type_343_collected_data_1 = { value = var:aroai_building_type_343_collected_data
subtract = { value = var:aroai_building_type_343_collected_data floor = yes } multiply = 100 }
aroai_building_type_343_collected_data_2 = { value = var:aroai_building_type_343_collected_data
subtract = { value = var:aroai_building_type_343_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_343_collected_data_3 = { value = var:aroai_building_type_343_collected_data
subtract = { value = var:aroai_building_type_343_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_343_collected_data_4 = { value = var:aroai_building_type_343_collected_data
subtract = { value = var:aroai_building_type_343_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_343_collected_data_5 = { value = var:aroai_building_type_343_collected_data
divide = 10000000 floor = yes }
aroai_building_type_343_collected_data_average_of_1_and_2 = { value = aroai_building_type_343_collected_data_1
add = aroai_building_type_343_collected_data_2 divide = 2 floor = yes }
aroai_building_type_344_collected_data_1 = { value = var:aroai_building_type_344_collected_data
subtract = { value = var:aroai_building_type_344_collected_data floor = yes } multiply = 100 }
aroai_building_type_344_collected_data_2 = { value = var:aroai_building_type_344_collected_data
subtract = { value = var:aroai_building_type_344_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_344_collected_data_3 = { value = var:aroai_building_type_344_collected_data
subtract = { value = var:aroai_building_type_344_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_344_collected_data_4 = { value = var:aroai_building_type_344_collected_data
subtract = { value = var:aroai_building_type_344_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_344_collected_data_5 = { value = var:aroai_building_type_344_collected_data
divide = 10000000 floor = yes }
aroai_building_type_344_collected_data_average_of_1_and_2 = { value = aroai_building_type_344_collected_data_1
add = aroai_building_type_344_collected_data_2 divide = 2 floor = yes }
aroai_building_type_345_collected_data_1 = { value = var:aroai_building_type_345_collected_data
subtract = { value = var:aroai_building_type_345_collected_data floor = yes } multiply = 100 }
aroai_building_type_345_collected_data_2 = { value = var:aroai_building_type_345_collected_data
subtract = { value = var:aroai_building_type_345_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_345_collected_data_3 = { value = var:aroai_building_type_345_collected_data
subtract = { value = var:aroai_building_type_345_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_345_collected_data_4 = { value = var:aroai_building_type_345_collected_data
subtract = { value = var:aroai_building_type_345_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_345_collected_data_5 = { value = var:aroai_building_type_345_collected_data
divide = 10000000 floor = yes }
aroai_building_type_345_collected_data_average_of_1_and_2 = { value = aroai_building_type_345_collected_data_1
add = aroai_building_type_345_collected_data_2 divide = 2 floor = yes }
aroai_building_type_346_collected_data_1 = { value = var:aroai_building_type_346_collected_data
subtract = { value = var:aroai_building_type_346_collected_data floor = yes } multiply = 100 }
aroai_building_type_346_collected_data_2 = { value = var:aroai_building_type_346_collected_data
subtract = { value = var:aroai_building_type_346_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_346_collected_data_3 = { value = var:aroai_building_type_346_collected_data
subtract = { value = var:aroai_building_type_346_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_346_collected_data_4 = { value = var:aroai_building_type_346_collected_data
subtract = { value = var:aroai_building_type_346_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_346_collected_data_5 = { value = var:aroai_building_type_346_collected_data
divide = 10000000 floor = yes }
aroai_building_type_346_collected_data_average_of_1_and_2 = { value = aroai_building_type_346_collected_data_1
add = aroai_building_type_346_collected_data_2 divide = 2 floor = yes }
aroai_building_type_347_collected_data_1 = { value = var:aroai_building_type_347_collected_data
subtract = { value = var:aroai_building_type_347_collected_data floor = yes } multiply = 100 }
aroai_building_type_347_collected_data_2 = { value = var:aroai_building_type_347_collected_data
subtract = { value = var:aroai_building_type_347_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_347_collected_data_3 = { value = var:aroai_building_type_347_collected_data
subtract = { value = var:aroai_building_type_347_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_347_collected_data_4 = { value = var:aroai_building_type_347_collected_data
subtract = { value = var:aroai_building_type_347_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_347_collected_data_5 = { value = var:aroai_building_type_347_collected_data
divide = 10000000 floor = yes }
aroai_building_type_347_collected_data_average_of_1_and_2 = { value = aroai_building_type_347_collected_data_1
add = aroai_building_type_347_collected_data_2 divide = 2 floor = yes }
aroai_building_type_348_collected_data_1 = { value = var:aroai_building_type_348_collected_data
subtract = { value = var:aroai_building_type_348_collected_data floor = yes } multiply = 100 }
aroai_building_type_348_collected_data_2 = { value = var:aroai_building_type_348_collected_data
subtract = { value = var:aroai_building_type_348_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_348_collected_data_3 = { value = var:aroai_building_type_348_collected_data
subtract = { value = var:aroai_building_type_348_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_348_collected_data_4 = { value = var:aroai_building_type_348_collected_data
subtract = { value = var:aroai_building_type_348_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_348_collected_data_5 = { value = var:aroai_building_type_348_collected_data
divide = 10000000 floor = yes }
aroai_building_type_348_collected_data_average_of_1_and_2 = { value = aroai_building_type_348_collected_data_1
add = aroai_building_type_348_collected_data_2 divide = 2 floor = yes }
aroai_building_type_349_collected_data_1 = { value = var:aroai_building_type_349_collected_data
subtract = { value = var:aroai_building_type_349_collected_data floor = yes } multiply = 100 }
aroai_building_type_349_collected_data_2 = { value = var:aroai_building_type_349_collected_data
subtract = { value = var:aroai_building_type_349_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_349_collected_data_3 = { value = var:aroai_building_type_349_collected_data
subtract = { value = var:aroai_building_type_349_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_349_collected_data_4 = { value = var:aroai_building_type_349_collected_data
subtract = { value = var:aroai_building_type_349_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_349_collected_data_5 = { value = var:aroai_building_type_349_collected_data
divide = 10000000 floor = yes }
aroai_building_type_349_collected_data_average_of_1_and_2 = { value = aroai_building_type_349_collected_data_1
add = aroai_building_type_349_collected_data_2 divide = 2 floor = yes }
aroai_building_type_350_collected_data_1 = { value = var:aroai_building_type_350_collected_data
subtract = { value = var:aroai_building_type_350_collected_data floor = yes } multiply = 100 }
aroai_building_type_350_collected_data_2 = { value = var:aroai_building_type_350_collected_data
subtract = { value = var:aroai_building_type_350_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_350_collected_data_3 = { value = var:aroai_building_type_350_collected_data
subtract = { value = var:aroai_building_type_350_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_350_collected_data_4 = { value = var:aroai_building_type_350_collected_data
subtract = { value = var:aroai_building_type_350_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_350_collected_data_5 = { value = var:aroai_building_type_350_collected_data
divide = 10000000 floor = yes }
aroai_building_type_350_collected_data_average_of_1_and_2 = { value = aroai_building_type_350_collected_data_1
add = aroai_building_type_350_collected_data_2 divide = 2 floor = yes }
aroai_building_type_351_collected_data_1 = { value = var:aroai_building_type_351_collected_data
subtract = { value = var:aroai_building_type_351_collected_data floor = yes } multiply = 100 }
aroai_building_type_351_collected_data_2 = { value = var:aroai_building_type_351_collected_data
subtract = { value = var:aroai_building_type_351_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_351_collected_data_3 = { value = var:aroai_building_type_351_collected_data
subtract = { value = var:aroai_building_type_351_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_351_collected_data_4 = { value = var:aroai_building_type_351_collected_data
subtract = { value = var:aroai_building_type_351_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_351_collected_data_5 = { value = var:aroai_building_type_351_collected_data
divide = 10000000 floor = yes }
aroai_building_type_351_collected_data_average_of_1_and_2 = { value = aroai_building_type_351_collected_data_1
add = aroai_building_type_351_collected_data_2 divide = 2 floor = yes }
aroai_building_type_352_collected_data_1 = { value = var:aroai_building_type_352_collected_data
subtract = { value = var:aroai_building_type_352_collected_data floor = yes } multiply = 100 }
aroai_building_type_352_collected_data_2 = { value = var:aroai_building_type_352_collected_data
subtract = { value = var:aroai_building_type_352_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_352_collected_data_3 = { value = var:aroai_building_type_352_collected_data
subtract = { value = var:aroai_building_type_352_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_352_collected_data_4 = { value = var:aroai_building_type_352_collected_data
subtract = { value = var:aroai_building_type_352_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_352_collected_data_5 = { value = var:aroai_building_type_352_collected_data
divide = 10000000 floor = yes }
aroai_building_type_352_collected_data_average_of_1_and_2 = { value = aroai_building_type_352_collected_data_1
add = aroai_building_type_352_collected_data_2 divide = 2 floor = yes }
aroai_building_type_353_collected_data_1 = { value = var:aroai_building_type_353_collected_data
subtract = { value = var:aroai_building_type_353_collected_data floor = yes } multiply = 100 }
aroai_building_type_353_collected_data_2 = { value = var:aroai_building_type_353_collected_data
subtract = { value = var:aroai_building_type_353_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_353_collected_data_3 = { value = var:aroai_building_type_353_collected_data
subtract = { value = var:aroai_building_type_353_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_353_collected_data_4 = { value = var:aroai_building_type_353_collected_data
subtract = { value = var:aroai_building_type_353_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_353_collected_data_5 = { value = var:aroai_building_type_353_collected_data
divide = 10000000 floor = yes }
aroai_building_type_353_collected_data_average_of_1_and_2 = { value = aroai_building_type_353_collected_data_1
add = aroai_building_type_353_collected_data_2 divide = 2 floor = yes }
aroai_building_type_354_collected_data_1 = { value = var:aroai_building_type_354_collected_data
subtract = { value = var:aroai_building_type_354_collected_data floor = yes } multiply = 100 }
aroai_building_type_354_collected_data_2 = { value = var:aroai_building_type_354_collected_data
subtract = { value = var:aroai_building_type_354_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_354_collected_data_3 = { value = var:aroai_building_type_354_collected_data
subtract = { value = var:aroai_building_type_354_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_354_collected_data_4 = { value = var:aroai_building_type_354_collected_data
subtract = { value = var:aroai_building_type_354_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_354_collected_data_5 = { value = var:aroai_building_type_354_collected_data
divide = 10000000 floor = yes }
aroai_building_type_354_collected_data_average_of_1_and_2 = { value = aroai_building_type_354_collected_data_1
add = aroai_building_type_354_collected_data_2 divide = 2 floor = yes }
aroai_building_type_355_collected_data_1 = { value = var:aroai_building_type_355_collected_data
subtract = { value = var:aroai_building_type_355_collected_data floor = yes } multiply = 100 }
aroai_building_type_355_collected_data_2 = { value = var:aroai_building_type_355_collected_data
subtract = { value = var:aroai_building_type_355_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_355_collected_data_3 = { value = var:aroai_building_type_355_collected_data
subtract = { value = var:aroai_building_type_355_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_355_collected_data_4 = { value = var:aroai_building_type_355_collected_data
subtract = { value = var:aroai_building_type_355_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_355_collected_data_5 = { value = var:aroai_building_type_355_collected_data
divide = 10000000 floor = yes }
aroai_building_type_355_collected_data_average_of_1_and_2 = { value = aroai_building_type_355_collected_data_1
add = aroai_building_type_355_collected_data_2 divide = 2 floor = yes }
aroai_building_type_356_collected_data_1 = { value = var:aroai_building_type_356_collected_data
subtract = { value = var:aroai_building_type_356_collected_data floor = yes } multiply = 100 }
aroai_building_type_356_collected_data_2 = { value = var:aroai_building_type_356_collected_data
subtract = { value = var:aroai_building_type_356_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_356_collected_data_3 = { value = var:aroai_building_type_356_collected_data
subtract = { value = var:aroai_building_type_356_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_356_collected_data_4 = { value = var:aroai_building_type_356_collected_data
subtract = { value = var:aroai_building_type_356_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_356_collected_data_5 = { value = var:aroai_building_type_356_collected_data
divide = 10000000 floor = yes }
aroai_building_type_356_collected_data_average_of_1_and_2 = { value = aroai_building_type_356_collected_data_1
add = aroai_building_type_356_collected_data_2 divide = 2 floor = yes }
aroai_building_type_357_collected_data_1 = { value = var:aroai_building_type_357_collected_data
subtract = { value = var:aroai_building_type_357_collected_data floor = yes } multiply = 100 }
aroai_building_type_357_collected_data_2 = { value = var:aroai_building_type_357_collected_data
subtract = { value = var:aroai_building_type_357_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_357_collected_data_3 = { value = var:aroai_building_type_357_collected_data
subtract = { value = var:aroai_building_type_357_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_357_collected_data_4 = { value = var:aroai_building_type_357_collected_data
subtract = { value = var:aroai_building_type_357_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_357_collected_data_5 = { value = var:aroai_building_type_357_collected_data
divide = 10000000 floor = yes }
aroai_building_type_357_collected_data_average_of_1_and_2 = { value = aroai_building_type_357_collected_data_1
add = aroai_building_type_357_collected_data_2 divide = 2 floor = yes }
aroai_building_type_358_collected_data_1 = { value = var:aroai_building_type_358_collected_data
subtract = { value = var:aroai_building_type_358_collected_data floor = yes } multiply = 100 }
aroai_building_type_358_collected_data_2 = { value = var:aroai_building_type_358_collected_data
subtract = { value = var:aroai_building_type_358_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_358_collected_data_3 = { value = var:aroai_building_type_358_collected_data
subtract = { value = var:aroai_building_type_358_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_358_collected_data_4 = { value = var:aroai_building_type_358_collected_data
subtract = { value = var:aroai_building_type_358_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_358_collected_data_5 = { value = var:aroai_building_type_358_collected_data
divide = 10000000 floor = yes }
aroai_building_type_358_collected_data_average_of_1_and_2 = { value = aroai_building_type_358_collected_data_1
add = aroai_building_type_358_collected_data_2 divide = 2 floor = yes }
aroai_building_type_359_collected_data_1 = { value = var:aroai_building_type_359_collected_data
subtract = { value = var:aroai_building_type_359_collected_data floor = yes } multiply = 100 }
aroai_building_type_359_collected_data_2 = { value = var:aroai_building_type_359_collected_data
subtract = { value = var:aroai_building_type_359_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_359_collected_data_3 = { value = var:aroai_building_type_359_collected_data
subtract = { value = var:aroai_building_type_359_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_359_collected_data_4 = { value = var:aroai_building_type_359_collected_data
subtract = { value = var:aroai_building_type_359_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_359_collected_data_5 = { value = var:aroai_building_type_359_collected_data
divide = 10000000 floor = yes }
aroai_building_type_359_collected_data_average_of_1_and_2 = { value = aroai_building_type_359_collected_data_1
add = aroai_building_type_359_collected_data_2 divide = 2 floor = yes }
aroai_building_type_360_collected_data_1 = { value = var:aroai_building_type_360_collected_data
subtract = { value = var:aroai_building_type_360_collected_data floor = yes } multiply = 100 }
aroai_building_type_360_collected_data_2 = { value = var:aroai_building_type_360_collected_data
subtract = { value = var:aroai_building_type_360_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_360_collected_data_3 = { value = var:aroai_building_type_360_collected_data
subtract = { value = var:aroai_building_type_360_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_360_collected_data_4 = { value = var:aroai_building_type_360_collected_data
subtract = { value = var:aroai_building_type_360_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_360_collected_data_5 = { value = var:aroai_building_type_360_collected_data
divide = 10000000 floor = yes }
aroai_building_type_360_collected_data_average_of_1_and_2 = { value = aroai_building_type_360_collected_data_1
add = aroai_building_type_360_collected_data_2 divide = 2 floor = yes }
aroai_building_type_361_collected_data_1 = { value = var:aroai_building_type_361_collected_data
subtract = { value = var:aroai_building_type_361_collected_data floor = yes } multiply = 100 }
aroai_building_type_361_collected_data_2 = { value = var:aroai_building_type_361_collected_data
subtract = { value = var:aroai_building_type_361_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_361_collected_data_3 = { value = var:aroai_building_type_361_collected_data
subtract = { value = var:aroai_building_type_361_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_361_collected_data_4 = { value = var:aroai_building_type_361_collected_data
subtract = { value = var:aroai_building_type_361_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_361_collected_data_5 = { value = var:aroai_building_type_361_collected_data
divide = 10000000 floor = yes }
aroai_building_type_361_collected_data_average_of_1_and_2 = { value = aroai_building_type_361_collected_data_1
add = aroai_building_type_361_collected_data_2 divide = 2 floor = yes }
aroai_building_type_362_collected_data_1 = { value = var:aroai_building_type_362_collected_data
subtract = { value = var:aroai_building_type_362_collected_data floor = yes } multiply = 100 }
aroai_building_type_362_collected_data_2 = { value = var:aroai_building_type_362_collected_data
subtract = { value = var:aroai_building_type_362_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_362_collected_data_3 = { value = var:aroai_building_type_362_collected_data
subtract = { value = var:aroai_building_type_362_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_362_collected_data_4 = { value = var:aroai_building_type_362_collected_data
subtract = { value = var:aroai_building_type_362_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_362_collected_data_5 = { value = var:aroai_building_type_362_collected_data
divide = 10000000 floor = yes }
aroai_building_type_362_collected_data_average_of_1_and_2 = { value = aroai_building_type_362_collected_data_1
add = aroai_building_type_362_collected_data_2 divide = 2 floor = yes }
aroai_building_type_363_collected_data_1 = { value = var:aroai_building_type_363_collected_data
subtract = { value = var:aroai_building_type_363_collected_data floor = yes } multiply = 100 }
aroai_building_type_363_collected_data_2 = { value = var:aroai_building_type_363_collected_data
subtract = { value = var:aroai_building_type_363_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_363_collected_data_3 = { value = var:aroai_building_type_363_collected_data
subtract = { value = var:aroai_building_type_363_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_363_collected_data_4 = { value = var:aroai_building_type_363_collected_data
subtract = { value = var:aroai_building_type_363_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_363_collected_data_5 = { value = var:aroai_building_type_363_collected_data
divide = 10000000 floor = yes }
aroai_building_type_363_collected_data_average_of_1_and_2 = { value = aroai_building_type_363_collected_data_1
add = aroai_building_type_363_collected_data_2 divide = 2 floor = yes }
aroai_building_type_364_collected_data_1 = { value = var:aroai_building_type_364_collected_data
subtract = { value = var:aroai_building_type_364_collected_data floor = yes } multiply = 100 }
aroai_building_type_364_collected_data_2 = { value = var:aroai_building_type_364_collected_data
subtract = { value = var:aroai_building_type_364_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_364_collected_data_3 = { value = var:aroai_building_type_364_collected_data
subtract = { value = var:aroai_building_type_364_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_364_collected_data_4 = { value = var:aroai_building_type_364_collected_data
subtract = { value = var:aroai_building_type_364_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_364_collected_data_5 = { value = var:aroai_building_type_364_collected_data
divide = 10000000 floor = yes }
aroai_building_type_364_collected_data_average_of_1_and_2 = { value = aroai_building_type_364_collected_data_1
add = aroai_building_type_364_collected_data_2 divide = 2 floor = yes }
aroai_building_type_365_collected_data_1 = { value = var:aroai_building_type_365_collected_data
subtract = { value = var:aroai_building_type_365_collected_data floor = yes } multiply = 100 }
aroai_building_type_365_collected_data_2 = { value = var:aroai_building_type_365_collected_data
subtract = { value = var:aroai_building_type_365_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_365_collected_data_3 = { value = var:aroai_building_type_365_collected_data
subtract = { value = var:aroai_building_type_365_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_365_collected_data_4 = { value = var:aroai_building_type_365_collected_data
subtract = { value = var:aroai_building_type_365_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_365_collected_data_5 = { value = var:aroai_building_type_365_collected_data
divide = 10000000 floor = yes }
aroai_building_type_365_collected_data_average_of_1_and_2 = { value = aroai_building_type_365_collected_data_1
add = aroai_building_type_365_collected_data_2 divide = 2 floor = yes }
aroai_building_type_366_collected_data_1 = { value = var:aroai_building_type_366_collected_data
subtract = { value = var:aroai_building_type_366_collected_data floor = yes } multiply = 100 }
aroai_building_type_366_collected_data_2 = { value = var:aroai_building_type_366_collected_data
subtract = { value = var:aroai_building_type_366_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_366_collected_data_3 = { value = var:aroai_building_type_366_collected_data
subtract = { value = var:aroai_building_type_366_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_366_collected_data_4 = { value = var:aroai_building_type_366_collected_data
subtract = { value = var:aroai_building_type_366_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_366_collected_data_5 = { value = var:aroai_building_type_366_collected_data
divide = 10000000 floor = yes }
aroai_building_type_366_collected_data_average_of_1_and_2 = { value = aroai_building_type_366_collected_data_1
add = aroai_building_type_366_collected_data_2 divide = 2 floor = yes }
aroai_building_type_367_collected_data_1 = { value = var:aroai_building_type_367_collected_data
subtract = { value = var:aroai_building_type_367_collected_data floor = yes } multiply = 100 }
aroai_building_type_367_collected_data_2 = { value = var:aroai_building_type_367_collected_data
subtract = { value = var:aroai_building_type_367_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_367_collected_data_3 = { value = var:aroai_building_type_367_collected_data
subtract = { value = var:aroai_building_type_367_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_367_collected_data_4 = { value = var:aroai_building_type_367_collected_data
subtract = { value = var:aroai_building_type_367_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_367_collected_data_5 = { value = var:aroai_building_type_367_collected_data
divide = 10000000 floor = yes }
aroai_building_type_367_collected_data_average_of_1_and_2 = { value = aroai_building_type_367_collected_data_1
add = aroai_building_type_367_collected_data_2 divide = 2 floor = yes }
aroai_building_type_368_collected_data_1 = { value = var:aroai_building_type_368_collected_data
subtract = { value = var:aroai_building_type_368_collected_data floor = yes } multiply = 100 }
aroai_building_type_368_collected_data_2 = { value = var:aroai_building_type_368_collected_data
subtract = { value = var:aroai_building_type_368_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_368_collected_data_3 = { value = var:aroai_building_type_368_collected_data
subtract = { value = var:aroai_building_type_368_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_368_collected_data_4 = { value = var:aroai_building_type_368_collected_data
subtract = { value = var:aroai_building_type_368_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_368_collected_data_5 = { value = var:aroai_building_type_368_collected_data
divide = 10000000 floor = yes }
aroai_building_type_368_collected_data_average_of_1_and_2 = { value = aroai_building_type_368_collected_data_1
add = aroai_building_type_368_collected_data_2 divide = 2 floor = yes }
aroai_building_type_369_collected_data_1 = { value = var:aroai_building_type_369_collected_data
subtract = { value = var:aroai_building_type_369_collected_data floor = yes } multiply = 100 }
aroai_building_type_369_collected_data_2 = { value = var:aroai_building_type_369_collected_data
subtract = { value = var:aroai_building_type_369_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_369_collected_data_3 = { value = var:aroai_building_type_369_collected_data
subtract = { value = var:aroai_building_type_369_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_369_collected_data_4 = { value = var:aroai_building_type_369_collected_data
subtract = { value = var:aroai_building_type_369_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_369_collected_data_5 = { value = var:aroai_building_type_369_collected_data
divide = 10000000 floor = yes }
aroai_building_type_369_collected_data_average_of_1_and_2 = { value = aroai_building_type_369_collected_data_1
add = aroai_building_type_369_collected_data_2 divide = 2 floor = yes }
aroai_building_type_370_collected_data_1 = { value = var:aroai_building_type_370_collected_data
subtract = { value = var:aroai_building_type_370_collected_data floor = yes } multiply = 100 }
aroai_building_type_370_collected_data_2 = { value = var:aroai_building_type_370_collected_data
subtract = { value = var:aroai_building_type_370_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_370_collected_data_3 = { value = var:aroai_building_type_370_collected_data
subtract = { value = var:aroai_building_type_370_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_370_collected_data_4 = { value = var:aroai_building_type_370_collected_data
subtract = { value = var:aroai_building_type_370_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_370_collected_data_5 = { value = var:aroai_building_type_370_collected_data
divide = 10000000 floor = yes }
aroai_building_type_370_collected_data_average_of_1_and_2 = { value = aroai_building_type_370_collected_data_1
add = aroai_building_type_370_collected_data_2 divide = 2 floor = yes }
aroai_building_type_371_collected_data_1 = { value = var:aroai_building_type_371_collected_data
subtract = { value = var:aroai_building_type_371_collected_data floor = yes } multiply = 100 }
aroai_building_type_371_collected_data_2 = { value = var:aroai_building_type_371_collected_data
subtract = { value = var:aroai_building_type_371_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_371_collected_data_3 = { value = var:aroai_building_type_371_collected_data
subtract = { value = var:aroai_building_type_371_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_371_collected_data_4 = { value = var:aroai_building_type_371_collected_data
subtract = { value = var:aroai_building_type_371_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_371_collected_data_5 = { value = var:aroai_building_type_371_collected_data
divide = 10000000 floor = yes }
aroai_building_type_371_collected_data_average_of_1_and_2 = { value = aroai_building_type_371_collected_data_1
add = aroai_building_type_371_collected_data_2 divide = 2 floor = yes }
aroai_building_type_372_collected_data_1 = { value = var:aroai_building_type_372_collected_data
subtract = { value = var:aroai_building_type_372_collected_data floor = yes } multiply = 100 }
aroai_building_type_372_collected_data_2 = { value = var:aroai_building_type_372_collected_data
subtract = { value = var:aroai_building_type_372_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_372_collected_data_3 = { value = var:aroai_building_type_372_collected_data
subtract = { value = var:aroai_building_type_372_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_372_collected_data_4 = { value = var:aroai_building_type_372_collected_data
subtract = { value = var:aroai_building_type_372_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_372_collected_data_5 = { value = var:aroai_building_type_372_collected_data
divide = 10000000 floor = yes }
aroai_building_type_372_collected_data_average_of_1_and_2 = { value = aroai_building_type_372_collected_data_1
add = aroai_building_type_372_collected_data_2 divide = 2 floor = yes }
aroai_building_type_373_collected_data_1 = { value = var:aroai_building_type_373_collected_data
subtract = { value = var:aroai_building_type_373_collected_data floor = yes } multiply = 100 }
aroai_building_type_373_collected_data_2 = { value = var:aroai_building_type_373_collected_data
subtract = { value = var:aroai_building_type_373_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_373_collected_data_3 = { value = var:aroai_building_type_373_collected_data
subtract = { value = var:aroai_building_type_373_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_373_collected_data_4 = { value = var:aroai_building_type_373_collected_data
subtract = { value = var:aroai_building_type_373_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_373_collected_data_5 = { value = var:aroai_building_type_373_collected_data
divide = 10000000 floor = yes }
aroai_building_type_373_collected_data_average_of_1_and_2 = { value = aroai_building_type_373_collected_data_1
add = aroai_building_type_373_collected_data_2 divide = 2 floor = yes }
aroai_building_type_374_collected_data_1 = { value = var:aroai_building_type_374_collected_data
subtract = { value = var:aroai_building_type_374_collected_data floor = yes } multiply = 100 }
aroai_building_type_374_collected_data_2 = { value = var:aroai_building_type_374_collected_data
subtract = { value = var:aroai_building_type_374_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_374_collected_data_3 = { value = var:aroai_building_type_374_collected_data
subtract = { value = var:aroai_building_type_374_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_374_collected_data_4 = { value = var:aroai_building_type_374_collected_data
subtract = { value = var:aroai_building_type_374_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_374_collected_data_5 = { value = var:aroai_building_type_374_collected_data
divide = 10000000 floor = yes }
aroai_building_type_374_collected_data_average_of_1_and_2 = { value = aroai_building_type_374_collected_data_1
add = aroai_building_type_374_collected_data_2 divide = 2 floor = yes }
aroai_building_type_375_collected_data_1 = { value = var:aroai_building_type_375_collected_data
subtract = { value = var:aroai_building_type_375_collected_data floor = yes } multiply = 100 }
aroai_building_type_375_collected_data_2 = { value = var:aroai_building_type_375_collected_data
subtract = { value = var:aroai_building_type_375_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_375_collected_data_3 = { value = var:aroai_building_type_375_collected_data
subtract = { value = var:aroai_building_type_375_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_375_collected_data_4 = { value = var:aroai_building_type_375_collected_data
subtract = { value = var:aroai_building_type_375_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_375_collected_data_5 = { value = var:aroai_building_type_375_collected_data
divide = 10000000 floor = yes }
aroai_building_type_375_collected_data_average_of_1_and_2 = { value = aroai_building_type_375_collected_data_1
add = aroai_building_type_375_collected_data_2 divide = 2 floor = yes }
aroai_building_type_376_collected_data_1 = { value = var:aroai_building_type_376_collected_data
subtract = { value = var:aroai_building_type_376_collected_data floor = yes } multiply = 100 }
aroai_building_type_376_collected_data_2 = { value = var:aroai_building_type_376_collected_data
subtract = { value = var:aroai_building_type_376_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_376_collected_data_3 = { value = var:aroai_building_type_376_collected_data
subtract = { value = var:aroai_building_type_376_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_376_collected_data_4 = { value = var:aroai_building_type_376_collected_data
subtract = { value = var:aroai_building_type_376_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_376_collected_data_5 = { value = var:aroai_building_type_376_collected_data
divide = 10000000 floor = yes }
aroai_building_type_376_collected_data_average_of_1_and_2 = { value = aroai_building_type_376_collected_data_1
add = aroai_building_type_376_collected_data_2 divide = 2 floor = yes }
aroai_building_type_377_collected_data_1 = { value = var:aroai_building_type_377_collected_data
subtract = { value = var:aroai_building_type_377_collected_data floor = yes } multiply = 100 }
aroai_building_type_377_collected_data_2 = { value = var:aroai_building_type_377_collected_data
subtract = { value = var:aroai_building_type_377_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_377_collected_data_3 = { value = var:aroai_building_type_377_collected_data
subtract = { value = var:aroai_building_type_377_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_377_collected_data_4 = { value = var:aroai_building_type_377_collected_data
subtract = { value = var:aroai_building_type_377_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_377_collected_data_5 = { value = var:aroai_building_type_377_collected_data
divide = 10000000 floor = yes }
aroai_building_type_377_collected_data_average_of_1_and_2 = { value = aroai_building_type_377_collected_data_1
add = aroai_building_type_377_collected_data_2 divide = 2 floor = yes }
aroai_building_type_378_collected_data_1 = { value = var:aroai_building_type_378_collected_data
subtract = { value = var:aroai_building_type_378_collected_data floor = yes } multiply = 100 }
aroai_building_type_378_collected_data_2 = { value = var:aroai_building_type_378_collected_data
subtract = { value = var:aroai_building_type_378_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_378_collected_data_3 = { value = var:aroai_building_type_378_collected_data
subtract = { value = var:aroai_building_type_378_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_378_collected_data_4 = { value = var:aroai_building_type_378_collected_data
subtract = { value = var:aroai_building_type_378_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_378_collected_data_5 = { value = var:aroai_building_type_378_collected_data
divide = 10000000 floor = yes }
aroai_building_type_378_collected_data_average_of_1_and_2 = { value = aroai_building_type_378_collected_data_1
add = aroai_building_type_378_collected_data_2 divide = 2 floor = yes }
aroai_building_type_379_collected_data_1 = { value = var:aroai_building_type_379_collected_data
subtract = { value = var:aroai_building_type_379_collected_data floor = yes } multiply = 100 }
aroai_building_type_379_collected_data_2 = { value = var:aroai_building_type_379_collected_data
subtract = { value = var:aroai_building_type_379_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_379_collected_data_3 = { value = var:aroai_building_type_379_collected_data
subtract = { value = var:aroai_building_type_379_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_379_collected_data_4 = { value = var:aroai_building_type_379_collected_data
subtract = { value = var:aroai_building_type_379_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_379_collected_data_5 = { value = var:aroai_building_type_379_collected_data
divide = 10000000 floor = yes }
aroai_building_type_379_collected_data_average_of_1_and_2 = { value = aroai_building_type_379_collected_data_1
add = aroai_building_type_379_collected_data_2 divide = 2 floor = yes }
aroai_building_type_380_collected_data_1 = { value = var:aroai_building_type_380_collected_data
subtract = { value = var:aroai_building_type_380_collected_data floor = yes } multiply = 100 }
aroai_building_type_380_collected_data_2 = { value = var:aroai_building_type_380_collected_data
subtract = { value = var:aroai_building_type_380_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_380_collected_data_3 = { value = var:aroai_building_type_380_collected_data
subtract = { value = var:aroai_building_type_380_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_380_collected_data_4 = { value = var:aroai_building_type_380_collected_data
subtract = { value = var:aroai_building_type_380_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_380_collected_data_5 = { value = var:aroai_building_type_380_collected_data
divide = 10000000 floor = yes }
aroai_building_type_380_collected_data_average_of_1_and_2 = { value = aroai_building_type_380_collected_data_1
add = aroai_building_type_380_collected_data_2 divide = 2 floor = yes }
aroai_building_type_381_collected_data_1 = { value = var:aroai_building_type_381_collected_data
subtract = { value = var:aroai_building_type_381_collected_data floor = yes } multiply = 100 }
aroai_building_type_381_collected_data_2 = { value = var:aroai_building_type_381_collected_data
subtract = { value = var:aroai_building_type_381_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_381_collected_data_3 = { value = var:aroai_building_type_381_collected_data
subtract = { value = var:aroai_building_type_381_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_381_collected_data_4 = { value = var:aroai_building_type_381_collected_data
subtract = { value = var:aroai_building_type_381_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_381_collected_data_5 = { value = var:aroai_building_type_381_collected_data
divide = 10000000 floor = yes }
aroai_building_type_381_collected_data_average_of_1_and_2 = { value = aroai_building_type_381_collected_data_1
add = aroai_building_type_381_collected_data_2 divide = 2 floor = yes }
aroai_building_type_382_collected_data_1 = { value = var:aroai_building_type_382_collected_data
subtract = { value = var:aroai_building_type_382_collected_data floor = yes } multiply = 100 }
aroai_building_type_382_collected_data_2 = { value = var:aroai_building_type_382_collected_data
subtract = { value = var:aroai_building_type_382_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_382_collected_data_3 = { value = var:aroai_building_type_382_collected_data
subtract = { value = var:aroai_building_type_382_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_382_collected_data_4 = { value = var:aroai_building_type_382_collected_data
subtract = { value = var:aroai_building_type_382_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_382_collected_data_5 = { value = var:aroai_building_type_382_collected_data
divide = 10000000 floor = yes }
aroai_building_type_382_collected_data_average_of_1_and_2 = { value = aroai_building_type_382_collected_data_1
add = aroai_building_type_382_collected_data_2 divide = 2 floor = yes }
aroai_building_type_383_collected_data_1 = { value = var:aroai_building_type_383_collected_data
subtract = { value = var:aroai_building_type_383_collected_data floor = yes } multiply = 100 }
aroai_building_type_383_collected_data_2 = { value = var:aroai_building_type_383_collected_data
subtract = { value = var:aroai_building_type_383_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_383_collected_data_3 = { value = var:aroai_building_type_383_collected_data
subtract = { value = var:aroai_building_type_383_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_383_collected_data_4 = { value = var:aroai_building_type_383_collected_data
subtract = { value = var:aroai_building_type_383_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_383_collected_data_5 = { value = var:aroai_building_type_383_collected_data
divide = 10000000 floor = yes }
aroai_building_type_383_collected_data_average_of_1_and_2 = { value = aroai_building_type_383_collected_data_1
add = aroai_building_type_383_collected_data_2 divide = 2 floor = yes }
aroai_building_type_384_collected_data_1 = { value = var:aroai_building_type_384_collected_data
subtract = { value = var:aroai_building_type_384_collected_data floor = yes } multiply = 100 }
aroai_building_type_384_collected_data_2 = { value = var:aroai_building_type_384_collected_data
subtract = { value = var:aroai_building_type_384_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_384_collected_data_3 = { value = var:aroai_building_type_384_collected_data
subtract = { value = var:aroai_building_type_384_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_384_collected_data_4 = { value = var:aroai_building_type_384_collected_data
subtract = { value = var:aroai_building_type_384_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_384_collected_data_5 = { value = var:aroai_building_type_384_collected_data
divide = 10000000 floor = yes }
aroai_building_type_384_collected_data_average_of_1_and_2 = { value = aroai_building_type_384_collected_data_1
add = aroai_building_type_384_collected_data_2 divide = 2 floor = yes }
aroai_building_type_385_collected_data_1 = { value = var:aroai_building_type_385_collected_data
subtract = { value = var:aroai_building_type_385_collected_data floor = yes } multiply = 100 }
aroai_building_type_385_collected_data_2 = { value = var:aroai_building_type_385_collected_data
subtract = { value = var:aroai_building_type_385_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_385_collected_data_3 = { value = var:aroai_building_type_385_collected_data
subtract = { value = var:aroai_building_type_385_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_385_collected_data_4 = { value = var:aroai_building_type_385_collected_data
subtract = { value = var:aroai_building_type_385_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_385_collected_data_5 = { value = var:aroai_building_type_385_collected_data
divide = 10000000 floor = yes }
aroai_building_type_385_collected_data_average_of_1_and_2 = { value = aroai_building_type_385_collected_data_1
add = aroai_building_type_385_collected_data_2 divide = 2 floor = yes }
aroai_building_type_386_collected_data_1 = { value = var:aroai_building_type_386_collected_data
subtract = { value = var:aroai_building_type_386_collected_data floor = yes } multiply = 100 }
aroai_building_type_386_collected_data_2 = { value = var:aroai_building_type_386_collected_data
subtract = { value = var:aroai_building_type_386_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_386_collected_data_3 = { value = var:aroai_building_type_386_collected_data
subtract = { value = var:aroai_building_type_386_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_386_collected_data_4 = { value = var:aroai_building_type_386_collected_data
subtract = { value = var:aroai_building_type_386_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_386_collected_data_5 = { value = var:aroai_building_type_386_collected_data
divide = 10000000 floor = yes }
aroai_building_type_386_collected_data_average_of_1_and_2 = { value = aroai_building_type_386_collected_data_1
add = aroai_building_type_386_collected_data_2 divide = 2 floor = yes }
aroai_building_type_387_collected_data_1 = { value = var:aroai_building_type_387_collected_data
subtract = { value = var:aroai_building_type_387_collected_data floor = yes } multiply = 100 }
aroai_building_type_387_collected_data_2 = { value = var:aroai_building_type_387_collected_data
subtract = { value = var:aroai_building_type_387_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_387_collected_data_3 = { value = var:aroai_building_type_387_collected_data
subtract = { value = var:aroai_building_type_387_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_387_collected_data_4 = { value = var:aroai_building_type_387_collected_data
subtract = { value = var:aroai_building_type_387_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_387_collected_data_5 = { value = var:aroai_building_type_387_collected_data
divide = 10000000 floor = yes }
aroai_building_type_387_collected_data_average_of_1_and_2 = { value = aroai_building_type_387_collected_data_1
add = aroai_building_type_387_collected_data_2 divide = 2 floor = yes }
aroai_building_type_388_collected_data_1 = { value = var:aroai_building_type_388_collected_data
subtract = { value = var:aroai_building_type_388_collected_data floor = yes } multiply = 100 }
aroai_building_type_388_collected_data_2 = { value = var:aroai_building_type_388_collected_data
subtract = { value = var:aroai_building_type_388_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_388_collected_data_3 = { value = var:aroai_building_type_388_collected_data
subtract = { value = var:aroai_building_type_388_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_388_collected_data_4 = { value = var:aroai_building_type_388_collected_data
subtract = { value = var:aroai_building_type_388_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_388_collected_data_5 = { value = var:aroai_building_type_388_collected_data
divide = 10000000 floor = yes }
aroai_building_type_388_collected_data_average_of_1_and_2 = { value = aroai_building_type_388_collected_data_1
add = aroai_building_type_388_collected_data_2 divide = 2 floor = yes }
aroai_building_type_389_collected_data_1 = { value = var:aroai_building_type_389_collected_data
subtract = { value = var:aroai_building_type_389_collected_data floor = yes } multiply = 100 }
aroai_building_type_389_collected_data_2 = { value = var:aroai_building_type_389_collected_data
subtract = { value = var:aroai_building_type_389_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_389_collected_data_3 = { value = var:aroai_building_type_389_collected_data
subtract = { value = var:aroai_building_type_389_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_389_collected_data_4 = { value = var:aroai_building_type_389_collected_data
subtract = { value = var:aroai_building_type_389_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_389_collected_data_5 = { value = var:aroai_building_type_389_collected_data
divide = 10000000 floor = yes }
aroai_building_type_389_collected_data_average_of_1_and_2 = { value = aroai_building_type_389_collected_data_1
add = aroai_building_type_389_collected_data_2 divide = 2 floor = yes }
aroai_building_type_390_collected_data_1 = { value = var:aroai_building_type_390_collected_data
subtract = { value = var:aroai_building_type_390_collected_data floor = yes } multiply = 100 }
aroai_building_type_390_collected_data_2 = { value = var:aroai_building_type_390_collected_data
subtract = { value = var:aroai_building_type_390_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_390_collected_data_3 = { value = var:aroai_building_type_390_collected_data
subtract = { value = var:aroai_building_type_390_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_390_collected_data_4 = { value = var:aroai_building_type_390_collected_data
subtract = { value = var:aroai_building_type_390_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_390_collected_data_5 = { value = var:aroai_building_type_390_collected_data
divide = 10000000 floor = yes }
aroai_building_type_390_collected_data_average_of_1_and_2 = { value = aroai_building_type_390_collected_data_1
add = aroai_building_type_390_collected_data_2 divide = 2 floor = yes }
aroai_building_type_391_collected_data_1 = { value = var:aroai_building_type_391_collected_data
subtract = { value = var:aroai_building_type_391_collected_data floor = yes } multiply = 100 }
aroai_building_type_391_collected_data_2 = { value = var:aroai_building_type_391_collected_data
subtract = { value = var:aroai_building_type_391_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_391_collected_data_3 = { value = var:aroai_building_type_391_collected_data
subtract = { value = var:aroai_building_type_391_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_391_collected_data_4 = { value = var:aroai_building_type_391_collected_data
subtract = { value = var:aroai_building_type_391_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_391_collected_data_5 = { value = var:aroai_building_type_391_collected_data
divide = 10000000 floor = yes }
aroai_building_type_391_collected_data_average_of_1_and_2 = { value = aroai_building_type_391_collected_data_1
add = aroai_building_type_391_collected_data_2 divide = 2 floor = yes }
aroai_building_type_392_collected_data_1 = { value = var:aroai_building_type_392_collected_data
subtract = { value = var:aroai_building_type_392_collected_data floor = yes } multiply = 100 }
aroai_building_type_392_collected_data_2 = { value = var:aroai_building_type_392_collected_data
subtract = { value = var:aroai_building_type_392_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_392_collected_data_3 = { value = var:aroai_building_type_392_collected_data
subtract = { value = var:aroai_building_type_392_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_392_collected_data_4 = { value = var:aroai_building_type_392_collected_data
subtract = { value = var:aroai_building_type_392_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_392_collected_data_5 = { value = var:aroai_building_type_392_collected_data
divide = 10000000 floor = yes }
aroai_building_type_392_collected_data_average_of_1_and_2 = { value = aroai_building_type_392_collected_data_1
add = aroai_building_type_392_collected_data_2 divide = 2 floor = yes }
aroai_building_type_393_collected_data_1 = { value = var:aroai_building_type_393_collected_data
subtract = { value = var:aroai_building_type_393_collected_data floor = yes } multiply = 100 }
aroai_building_type_393_collected_data_2 = { value = var:aroai_building_type_393_collected_data
subtract = { value = var:aroai_building_type_393_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_393_collected_data_3 = { value = var:aroai_building_type_393_collected_data
subtract = { value = var:aroai_building_type_393_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_393_collected_data_4 = { value = var:aroai_building_type_393_collected_data
subtract = { value = var:aroai_building_type_393_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_393_collected_data_5 = { value = var:aroai_building_type_393_collected_data
divide = 10000000 floor = yes }
aroai_building_type_393_collected_data_average_of_1_and_2 = { value = aroai_building_type_393_collected_data_1
add = aroai_building_type_393_collected_data_2 divide = 2 floor = yes }
aroai_building_type_394_collected_data_1 = { value = var:aroai_building_type_394_collected_data
subtract = { value = var:aroai_building_type_394_collected_data floor = yes } multiply = 100 }
aroai_building_type_394_collected_data_2 = { value = var:aroai_building_type_394_collected_data
subtract = { value = var:aroai_building_type_394_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_394_collected_data_3 = { value = var:aroai_building_type_394_collected_data
subtract = { value = var:aroai_building_type_394_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_394_collected_data_4 = { value = var:aroai_building_type_394_collected_data
subtract = { value = var:aroai_building_type_394_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_394_collected_data_5 = { value = var:aroai_building_type_394_collected_data
divide = 10000000 floor = yes }
aroai_building_type_394_collected_data_average_of_1_and_2 = { value = aroai_building_type_394_collected_data_1
add = aroai_building_type_394_collected_data_2 divide = 2 floor = yes }
aroai_building_type_395_collected_data_1 = { value = var:aroai_building_type_395_collected_data
subtract = { value = var:aroai_building_type_395_collected_data floor = yes } multiply = 100 }
aroai_building_type_395_collected_data_2 = { value = var:aroai_building_type_395_collected_data
subtract = { value = var:aroai_building_type_395_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_395_collected_data_3 = { value = var:aroai_building_type_395_collected_data
subtract = { value = var:aroai_building_type_395_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_395_collected_data_4 = { value = var:aroai_building_type_395_collected_data
subtract = { value = var:aroai_building_type_395_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_395_collected_data_5 = { value = var:aroai_building_type_395_collected_data
divide = 10000000 floor = yes }
aroai_building_type_395_collected_data_average_of_1_and_2 = { value = aroai_building_type_395_collected_data_1
add = aroai_building_type_395_collected_data_2 divide = 2 floor = yes }
aroai_building_type_396_collected_data_1 = { value = var:aroai_building_type_396_collected_data
subtract = { value = var:aroai_building_type_396_collected_data floor = yes } multiply = 100 }
aroai_building_type_396_collected_data_2 = { value = var:aroai_building_type_396_collected_data
subtract = { value = var:aroai_building_type_396_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_396_collected_data_3 = { value = var:aroai_building_type_396_collected_data
subtract = { value = var:aroai_building_type_396_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_396_collected_data_4 = { value = var:aroai_building_type_396_collected_data
subtract = { value = var:aroai_building_type_396_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_396_collected_data_5 = { value = var:aroai_building_type_396_collected_data
divide = 10000000 floor = yes }
aroai_building_type_396_collected_data_average_of_1_and_2 = { value = aroai_building_type_396_collected_data_1
add = aroai_building_type_396_collected_data_2 divide = 2 floor = yes }
aroai_building_type_397_collected_data_1 = { value = var:aroai_building_type_397_collected_data
subtract = { value = var:aroai_building_type_397_collected_data floor = yes } multiply = 100 }
aroai_building_type_397_collected_data_2 = { value = var:aroai_building_type_397_collected_data
subtract = { value = var:aroai_building_type_397_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_397_collected_data_3 = { value = var:aroai_building_type_397_collected_data
subtract = { value = var:aroai_building_type_397_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_397_collected_data_4 = { value = var:aroai_building_type_397_collected_data
subtract = { value = var:aroai_building_type_397_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_397_collected_data_5 = { value = var:aroai_building_type_397_collected_data
divide = 10000000 floor = yes }
aroai_building_type_397_collected_data_average_of_1_and_2 = { value = aroai_building_type_397_collected_data_1
add = aroai_building_type_397_collected_data_2 divide = 2 floor = yes }
aroai_building_type_398_collected_data_1 = { value = var:aroai_building_type_398_collected_data
subtract = { value = var:aroai_building_type_398_collected_data floor = yes } multiply = 100 }
aroai_building_type_398_collected_data_2 = { value = var:aroai_building_type_398_collected_data
subtract = { value = var:aroai_building_type_398_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_398_collected_data_3 = { value = var:aroai_building_type_398_collected_data
subtract = { value = var:aroai_building_type_398_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_398_collected_data_4 = { value = var:aroai_building_type_398_collected_data
subtract = { value = var:aroai_building_type_398_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_398_collected_data_5 = { value = var:aroai_building_type_398_collected_data
divide = 10000000 floor = yes }
aroai_building_type_398_collected_data_average_of_1_and_2 = { value = aroai_building_type_398_collected_data_1
add = aroai_building_type_398_collected_data_2 divide = 2 floor = yes }
aroai_building_type_399_collected_data_1 = { value = var:aroai_building_type_399_collected_data
subtract = { value = var:aroai_building_type_399_collected_data floor = yes } multiply = 100 }
aroai_building_type_399_collected_data_2 = { value = var:aroai_building_type_399_collected_data
subtract = { value = var:aroai_building_type_399_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_399_collected_data_3 = { value = var:aroai_building_type_399_collected_data
subtract = { value = var:aroai_building_type_399_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_399_collected_data_4 = { value = var:aroai_building_type_399_collected_data
subtract = { value = var:aroai_building_type_399_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_399_collected_data_5 = { value = var:aroai_building_type_399_collected_data
divide = 10000000 floor = yes }
aroai_building_type_399_collected_data_average_of_1_and_2 = { value = aroai_building_type_399_collected_data_1
add = aroai_building_type_399_collected_data_2 divide = 2 floor = yes }
aroai_building_type_400_collected_data_1 = { value = var:aroai_building_type_400_collected_data
subtract = { value = var:aroai_building_type_400_collected_data floor = yes } multiply = 100 }
aroai_building_type_400_collected_data_2 = { value = var:aroai_building_type_400_collected_data
subtract = { value = var:aroai_building_type_400_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_400_collected_data_3 = { value = var:aroai_building_type_400_collected_data
subtract = { value = var:aroai_building_type_400_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_400_collected_data_4 = { value = var:aroai_building_type_400_collected_data
subtract = { value = var:aroai_building_type_400_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_400_collected_data_5 = { value = var:aroai_building_type_400_collected_data
divide = 10000000 floor = yes }
aroai_building_type_400_collected_data_average_of_1_and_2 = { value = aroai_building_type_400_collected_data_1
add = aroai_building_type_400_collected_data_2 divide = 2 floor = yes }
aroai_building_type_401_collected_data_1 = { value = var:aroai_building_type_401_collected_data
subtract = { value = var:aroai_building_type_401_collected_data floor = yes } multiply = 100 }
aroai_building_type_401_collected_data_2 = { value = var:aroai_building_type_401_collected_data
subtract = { value = var:aroai_building_type_401_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_401_collected_data_3 = { value = var:aroai_building_type_401_collected_data
subtract = { value = var:aroai_building_type_401_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_401_collected_data_4 = { value = var:aroai_building_type_401_collected_data
subtract = { value = var:aroai_building_type_401_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_401_collected_data_5 = { value = var:aroai_building_type_401_collected_data
divide = 10000000 floor = yes }
aroai_building_type_401_collected_data_average_of_1_and_2 = { value = aroai_building_type_401_collected_data_1
add = aroai_building_type_401_collected_data_2 divide = 2 floor = yes }
aroai_building_type_402_collected_data_1 = { value = var:aroai_building_type_402_collected_data
subtract = { value = var:aroai_building_type_402_collected_data floor = yes } multiply = 100 }
aroai_building_type_402_collected_data_2 = { value = var:aroai_building_type_402_collected_data
subtract = { value = var:aroai_building_type_402_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_402_collected_data_3 = { value = var:aroai_building_type_402_collected_data
subtract = { value = var:aroai_building_type_402_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_402_collected_data_4 = { value = var:aroai_building_type_402_collected_data
subtract = { value = var:aroai_building_type_402_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_402_collected_data_5 = { value = var:aroai_building_type_402_collected_data
divide = 10000000 floor = yes }
aroai_building_type_402_collected_data_average_of_1_and_2 = { value = aroai_building_type_402_collected_data_1
add = aroai_building_type_402_collected_data_2 divide = 2 floor = yes }
aroai_building_type_403_collected_data_1 = { value = var:aroai_building_type_403_collected_data
subtract = { value = var:aroai_building_type_403_collected_data floor = yes } multiply = 100 }
aroai_building_type_403_collected_data_2 = { value = var:aroai_building_type_403_collected_data
subtract = { value = var:aroai_building_type_403_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_403_collected_data_3 = { value = var:aroai_building_type_403_collected_data
subtract = { value = var:aroai_building_type_403_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_403_collected_data_4 = { value = var:aroai_building_type_403_collected_data
subtract = { value = var:aroai_building_type_403_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_403_collected_data_5 = { value = var:aroai_building_type_403_collected_data
divide = 10000000 floor = yes }
aroai_building_type_403_collected_data_average_of_1_and_2 = { value = aroai_building_type_403_collected_data_1
add = aroai_building_type_403_collected_data_2 divide = 2 floor = yes }
aroai_building_type_404_collected_data_1 = { value = var:aroai_building_type_404_collected_data
subtract = { value = var:aroai_building_type_404_collected_data floor = yes } multiply = 100 }
aroai_building_type_404_collected_data_2 = { value = var:aroai_building_type_404_collected_data
subtract = { value = var:aroai_building_type_404_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_404_collected_data_3 = { value = var:aroai_building_type_404_collected_data
subtract = { value = var:aroai_building_type_404_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_404_collected_data_4 = { value = var:aroai_building_type_404_collected_data
subtract = { value = var:aroai_building_type_404_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_404_collected_data_5 = { value = var:aroai_building_type_404_collected_data
divide = 10000000 floor = yes }
aroai_building_type_404_collected_data_average_of_1_and_2 = { value = aroai_building_type_404_collected_data_1
add = aroai_building_type_404_collected_data_2 divide = 2 floor = yes }
aroai_building_type_405_collected_data_1 = { value = var:aroai_building_type_405_collected_data
subtract = { value = var:aroai_building_type_405_collected_data floor = yes } multiply = 100 }
aroai_building_type_405_collected_data_2 = { value = var:aroai_building_type_405_collected_data
subtract = { value = var:aroai_building_type_405_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_405_collected_data_3 = { value = var:aroai_building_type_405_collected_data
subtract = { value = var:aroai_building_type_405_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_405_collected_data_4 = { value = var:aroai_building_type_405_collected_data
subtract = { value = var:aroai_building_type_405_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_405_collected_data_5 = { value = var:aroai_building_type_405_collected_data
divide = 10000000 floor = yes }
aroai_building_type_405_collected_data_average_of_1_and_2 = { value = aroai_building_type_405_collected_data_1
add = aroai_building_type_405_collected_data_2 divide = 2 floor = yes }
aroai_building_type_406_collected_data_1 = { value = var:aroai_building_type_406_collected_data
subtract = { value = var:aroai_building_type_406_collected_data floor = yes } multiply = 100 }
aroai_building_type_406_collected_data_2 = { value = var:aroai_building_type_406_collected_data
subtract = { value = var:aroai_building_type_406_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_406_collected_data_3 = { value = var:aroai_building_type_406_collected_data
subtract = { value = var:aroai_building_type_406_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_406_collected_data_4 = { value = var:aroai_building_type_406_collected_data
subtract = { value = var:aroai_building_type_406_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_406_collected_data_5 = { value = var:aroai_building_type_406_collected_data
divide = 10000000 floor = yes }
aroai_building_type_406_collected_data_average_of_1_and_2 = { value = aroai_building_type_406_collected_data_1
add = aroai_building_type_406_collected_data_2 divide = 2 floor = yes }
aroai_building_type_407_collected_data_1 = { value = var:aroai_building_type_407_collected_data
subtract = { value = var:aroai_building_type_407_collected_data floor = yes } multiply = 100 }
aroai_building_type_407_collected_data_2 = { value = var:aroai_building_type_407_collected_data
subtract = { value = var:aroai_building_type_407_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_407_collected_data_3 = { value = var:aroai_building_type_407_collected_data
subtract = { value = var:aroai_building_type_407_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_407_collected_data_4 = { value = var:aroai_building_type_407_collected_data
subtract = { value = var:aroai_building_type_407_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_407_collected_data_5 = { value = var:aroai_building_type_407_collected_data
divide = 10000000 floor = yes }
aroai_building_type_407_collected_data_average_of_1_and_2 = { value = aroai_building_type_407_collected_data_1
add = aroai_building_type_407_collected_data_2 divide = 2 floor = yes }
aroai_building_type_408_collected_data_1 = { value = var:aroai_building_type_408_collected_data
subtract = { value = var:aroai_building_type_408_collected_data floor = yes } multiply = 100 }
aroai_building_type_408_collected_data_2 = { value = var:aroai_building_type_408_collected_data
subtract = { value = var:aroai_building_type_408_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_408_collected_data_3 = { value = var:aroai_building_type_408_collected_data
subtract = { value = var:aroai_building_type_408_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_408_collected_data_4 = { value = var:aroai_building_type_408_collected_data
subtract = { value = var:aroai_building_type_408_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_408_collected_data_5 = { value = var:aroai_building_type_408_collected_data
divide = 10000000 floor = yes }
aroai_building_type_408_collected_data_average_of_1_and_2 = { value = aroai_building_type_408_collected_data_1
add = aroai_building_type_408_collected_data_2 divide = 2 floor = yes }
aroai_building_type_409_collected_data_1 = { value = var:aroai_building_type_409_collected_data
subtract = { value = var:aroai_building_type_409_collected_data floor = yes } multiply = 100 }
aroai_building_type_409_collected_data_2 = { value = var:aroai_building_type_409_collected_data
subtract = { value = var:aroai_building_type_409_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_409_collected_data_3 = { value = var:aroai_building_type_409_collected_data
subtract = { value = var:aroai_building_type_409_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_409_collected_data_4 = { value = var:aroai_building_type_409_collected_data
subtract = { value = var:aroai_building_type_409_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_409_collected_data_5 = { value = var:aroai_building_type_409_collected_data
divide = 10000000 floor = yes }
aroai_building_type_409_collected_data_average_of_1_and_2 = { value = aroai_building_type_409_collected_data_1
add = aroai_building_type_409_collected_data_2 divide = 2 floor = yes }
aroai_building_type_410_collected_data_1 = { value = var:aroai_building_type_410_collected_data
subtract = { value = var:aroai_building_type_410_collected_data floor = yes } multiply = 100 }
aroai_building_type_410_collected_data_2 = { value = var:aroai_building_type_410_collected_data
subtract = { value = var:aroai_building_type_410_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_410_collected_data_3 = { value = var:aroai_building_type_410_collected_data
subtract = { value = var:aroai_building_type_410_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_410_collected_data_4 = { value = var:aroai_building_type_410_collected_data
subtract = { value = var:aroai_building_type_410_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_410_collected_data_5 = { value = var:aroai_building_type_410_collected_data
divide = 10000000 floor = yes }
aroai_building_type_410_collected_data_average_of_1_and_2 = { value = aroai_building_type_410_collected_data_1
add = aroai_building_type_410_collected_data_2 divide = 2 floor = yes }
aroai_building_type_411_collected_data_1 = { value = var:aroai_building_type_411_collected_data
subtract = { value = var:aroai_building_type_411_collected_data floor = yes } multiply = 100 }
aroai_building_type_411_collected_data_2 = { value = var:aroai_building_type_411_collected_data
subtract = { value = var:aroai_building_type_411_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_411_collected_data_3 = { value = var:aroai_building_type_411_collected_data
subtract = { value = var:aroai_building_type_411_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_411_collected_data_4 = { value = var:aroai_building_type_411_collected_data
subtract = { value = var:aroai_building_type_411_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_411_collected_data_5 = { value = var:aroai_building_type_411_collected_data
divide = 10000000 floor = yes }
aroai_building_type_411_collected_data_average_of_1_and_2 = { value = aroai_building_type_411_collected_data_1
add = aroai_building_type_411_collected_data_2 divide = 2 floor = yes }
aroai_building_type_412_collected_data_1 = { value = var:aroai_building_type_412_collected_data
subtract = { value = var:aroai_building_type_412_collected_data floor = yes } multiply = 100 }
aroai_building_type_412_collected_data_2 = { value = var:aroai_building_type_412_collected_data
subtract = { value = var:aroai_building_type_412_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_412_collected_data_3 = { value = var:aroai_building_type_412_collected_data
subtract = { value = var:aroai_building_type_412_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_412_collected_data_4 = { value = var:aroai_building_type_412_collected_data
subtract = { value = var:aroai_building_type_412_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_412_collected_data_5 = { value = var:aroai_building_type_412_collected_data
divide = 10000000 floor = yes }
aroai_building_type_412_collected_data_average_of_1_and_2 = { value = aroai_building_type_412_collected_data_1
add = aroai_building_type_412_collected_data_2 divide = 2 floor = yes }
aroai_building_type_413_collected_data_1 = { value = var:aroai_building_type_413_collected_data
subtract = { value = var:aroai_building_type_413_collected_data floor = yes } multiply = 100 }
aroai_building_type_413_collected_data_2 = { value = var:aroai_building_type_413_collected_data
subtract = { value = var:aroai_building_type_413_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_413_collected_data_3 = { value = var:aroai_building_type_413_collected_data
subtract = { value = var:aroai_building_type_413_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_413_collected_data_4 = { value = var:aroai_building_type_413_collected_data
subtract = { value = var:aroai_building_type_413_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_413_collected_data_5 = { value = var:aroai_building_type_413_collected_data
divide = 10000000 floor = yes }
aroai_building_type_413_collected_data_average_of_1_and_2 = { value = aroai_building_type_413_collected_data_1
add = aroai_building_type_413_collected_data_2 divide = 2 floor = yes }
aroai_building_type_414_collected_data_1 = { value = var:aroai_building_type_414_collected_data
subtract = { value = var:aroai_building_type_414_collected_data floor = yes } multiply = 100 }
aroai_building_type_414_collected_data_2 = { value = var:aroai_building_type_414_collected_data
subtract = { value = var:aroai_building_type_414_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_414_collected_data_3 = { value = var:aroai_building_type_414_collected_data
subtract = { value = var:aroai_building_type_414_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_414_collected_data_4 = { value = var:aroai_building_type_414_collected_data
subtract = { value = var:aroai_building_type_414_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_414_collected_data_5 = { value = var:aroai_building_type_414_collected_data
divide = 10000000 floor = yes }
aroai_building_type_414_collected_data_average_of_1_and_2 = { value = aroai_building_type_414_collected_data_1
add = aroai_building_type_414_collected_data_2 divide = 2 floor = yes }
aroai_building_type_415_collected_data_1 = { value = var:aroai_building_type_415_collected_data
subtract = { value = var:aroai_building_type_415_collected_data floor = yes } multiply = 100 }
aroai_building_type_415_collected_data_2 = { value = var:aroai_building_type_415_collected_data
subtract = { value = var:aroai_building_type_415_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_415_collected_data_3 = { value = var:aroai_building_type_415_collected_data
subtract = { value = var:aroai_building_type_415_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_415_collected_data_4 = { value = var:aroai_building_type_415_collected_data
subtract = { value = var:aroai_building_type_415_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_415_collected_data_5 = { value = var:aroai_building_type_415_collected_data
divide = 10000000 floor = yes }
aroai_building_type_415_collected_data_average_of_1_and_2 = { value = aroai_building_type_415_collected_data_1
add = aroai_building_type_415_collected_data_2 divide = 2 floor = yes }
aroai_building_type_416_collected_data_1 = { value = var:aroai_building_type_416_collected_data
subtract = { value = var:aroai_building_type_416_collected_data floor = yes } multiply = 100 }
aroai_building_type_416_collected_data_2 = { value = var:aroai_building_type_416_collected_data
subtract = { value = var:aroai_building_type_416_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_416_collected_data_3 = { value = var:aroai_building_type_416_collected_data
subtract = { value = var:aroai_building_type_416_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_416_collected_data_4 = { value = var:aroai_building_type_416_collected_data
subtract = { value = var:aroai_building_type_416_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_416_collected_data_5 = { value = var:aroai_building_type_416_collected_data
divide = 10000000 floor = yes }
aroai_building_type_416_collected_data_average_of_1_and_2 = { value = aroai_building_type_416_collected_data_1
add = aroai_building_type_416_collected_data_2 divide = 2 floor = yes }
aroai_building_type_417_collected_data_1 = { value = var:aroai_building_type_417_collected_data
subtract = { value = var:aroai_building_type_417_collected_data floor = yes } multiply = 100 }
aroai_building_type_417_collected_data_2 = { value = var:aroai_building_type_417_collected_data
subtract = { value = var:aroai_building_type_417_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_417_collected_data_3 = { value = var:aroai_building_type_417_collected_data
subtract = { value = var:aroai_building_type_417_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_417_collected_data_4 = { value = var:aroai_building_type_417_collected_data
subtract = { value = var:aroai_building_type_417_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_417_collected_data_5 = { value = var:aroai_building_type_417_collected_data
divide = 10000000 floor = yes }
aroai_building_type_417_collected_data_average_of_1_and_2 = { value = aroai_building_type_417_collected_data_1
add = aroai_building_type_417_collected_data_2 divide = 2 floor = yes }
aroai_building_type_418_collected_data_1 = { value = var:aroai_building_type_418_collected_data
subtract = { value = var:aroai_building_type_418_collected_data floor = yes } multiply = 100 }
aroai_building_type_418_collected_data_2 = { value = var:aroai_building_type_418_collected_data
subtract = { value = var:aroai_building_type_418_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_418_collected_data_3 = { value = var:aroai_building_type_418_collected_data
subtract = { value = var:aroai_building_type_418_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_418_collected_data_4 = { value = var:aroai_building_type_418_collected_data
subtract = { value = var:aroai_building_type_418_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_418_collected_data_5 = { value = var:aroai_building_type_418_collected_data
divide = 10000000 floor = yes }
aroai_building_type_418_collected_data_average_of_1_and_2 = { value = aroai_building_type_418_collected_data_1
add = aroai_building_type_418_collected_data_2 divide = 2 floor = yes }
aroai_building_type_419_collected_data_1 = { value = var:aroai_building_type_419_collected_data
subtract = { value = var:aroai_building_type_419_collected_data floor = yes } multiply = 100 }
aroai_building_type_419_collected_data_2 = { value = var:aroai_building_type_419_collected_data
subtract = { value = var:aroai_building_type_419_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_419_collected_data_3 = { value = var:aroai_building_type_419_collected_data
subtract = { value = var:aroai_building_type_419_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_419_collected_data_4 = { value = var:aroai_building_type_419_collected_data
subtract = { value = var:aroai_building_type_419_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_419_collected_data_5 = { value = var:aroai_building_type_419_collected_data
divide = 10000000 floor = yes }
aroai_building_type_419_collected_data_average_of_1_and_2 = { value = aroai_building_type_419_collected_data_1
add = aroai_building_type_419_collected_data_2 divide = 2 floor = yes }
aroai_building_type_420_collected_data_1 = { value = var:aroai_building_type_420_collected_data
subtract = { value = var:aroai_building_type_420_collected_data floor = yes } multiply = 100 }
aroai_building_type_420_collected_data_2 = { value = var:aroai_building_type_420_collected_data
subtract = { value = var:aroai_building_type_420_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_420_collected_data_3 = { value = var:aroai_building_type_420_collected_data
subtract = { value = var:aroai_building_type_420_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_420_collected_data_4 = { value = var:aroai_building_type_420_collected_data
subtract = { value = var:aroai_building_type_420_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_420_collected_data_5 = { value = var:aroai_building_type_420_collected_data
divide = 10000000 floor = yes }
aroai_building_type_420_collected_data_average_of_1_and_2 = { value = aroai_building_type_420_collected_data_1
add = aroai_building_type_420_collected_data_2 divide = 2 floor = yes }
aroai_building_type_421_collected_data_1 = { value = var:aroai_building_type_421_collected_data
subtract = { value = var:aroai_building_type_421_collected_data floor = yes } multiply = 100 }
aroai_building_type_421_collected_data_2 = { value = var:aroai_building_type_421_collected_data
subtract = { value = var:aroai_building_type_421_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_421_collected_data_3 = { value = var:aroai_building_type_421_collected_data
subtract = { value = var:aroai_building_type_421_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_421_collected_data_4 = { value = var:aroai_building_type_421_collected_data
subtract = { value = var:aroai_building_type_421_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_421_collected_data_5 = { value = var:aroai_building_type_421_collected_data
divide = 10000000 floor = yes }
aroai_building_type_421_collected_data_average_of_1_and_2 = { value = aroai_building_type_421_collected_data_1
add = aroai_building_type_421_collected_data_2 divide = 2 floor = yes }
aroai_building_type_422_collected_data_1 = { value = var:aroai_building_type_422_collected_data
subtract = { value = var:aroai_building_type_422_collected_data floor = yes } multiply = 100 }
aroai_building_type_422_collected_data_2 = { value = var:aroai_building_type_422_collected_data
subtract = { value = var:aroai_building_type_422_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_422_collected_data_3 = { value = var:aroai_building_type_422_collected_data
subtract = { value = var:aroai_building_type_422_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_422_collected_data_4 = { value = var:aroai_building_type_422_collected_data
subtract = { value = var:aroai_building_type_422_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_422_collected_data_5 = { value = var:aroai_building_type_422_collected_data
divide = 10000000 floor = yes }
aroai_building_type_422_collected_data_average_of_1_and_2 = { value = aroai_building_type_422_collected_data_1
add = aroai_building_type_422_collected_data_2 divide = 2 floor = yes }
aroai_building_type_423_collected_data_1 = { value = var:aroai_building_type_423_collected_data
subtract = { value = var:aroai_building_type_423_collected_data floor = yes } multiply = 100 }
aroai_building_type_423_collected_data_2 = { value = var:aroai_building_type_423_collected_data
subtract = { value = var:aroai_building_type_423_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_423_collected_data_3 = { value = var:aroai_building_type_423_collected_data
subtract = { value = var:aroai_building_type_423_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_423_collected_data_4 = { value = var:aroai_building_type_423_collected_data
subtract = { value = var:aroai_building_type_423_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_423_collected_data_5 = { value = var:aroai_building_type_423_collected_data
divide = 10000000 floor = yes }
aroai_building_type_423_collected_data_average_of_1_and_2 = { value = aroai_building_type_423_collected_data_1
add = aroai_building_type_423_collected_data_2 divide = 2 floor = yes }
aroai_building_type_424_collected_data_1 = { value = var:aroai_building_type_424_collected_data
subtract = { value = var:aroai_building_type_424_collected_data floor = yes } multiply = 100 }
aroai_building_type_424_collected_data_2 = { value = var:aroai_building_type_424_collected_data
subtract = { value = var:aroai_building_type_424_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_424_collected_data_3 = { value = var:aroai_building_type_424_collected_data
subtract = { value = var:aroai_building_type_424_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_424_collected_data_4 = { value = var:aroai_building_type_424_collected_data
subtract = { value = var:aroai_building_type_424_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_424_collected_data_5 = { value = var:aroai_building_type_424_collected_data
divide = 10000000 floor = yes }
aroai_building_type_424_collected_data_average_of_1_and_2 = { value = aroai_building_type_424_collected_data_1
add = aroai_building_type_424_collected_data_2 divide = 2 floor = yes }
aroai_building_type_425_collected_data_1 = { value = var:aroai_building_type_425_collected_data
subtract = { value = var:aroai_building_type_425_collected_data floor = yes } multiply = 100 }
aroai_building_type_425_collected_data_2 = { value = var:aroai_building_type_425_collected_data
subtract = { value = var:aroai_building_type_425_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_425_collected_data_3 = { value = var:aroai_building_type_425_collected_data
subtract = { value = var:aroai_building_type_425_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_425_collected_data_4 = { value = var:aroai_building_type_425_collected_data
subtract = { value = var:aroai_building_type_425_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_425_collected_data_5 = { value = var:aroai_building_type_425_collected_data
divide = 10000000 floor = yes }
aroai_building_type_425_collected_data_average_of_1_and_2 = { value = aroai_building_type_425_collected_data_1
add = aroai_building_type_425_collected_data_2 divide = 2 floor = yes }
aroai_building_type_426_collected_data_1 = { value = var:aroai_building_type_426_collected_data
subtract = { value = var:aroai_building_type_426_collected_data floor = yes } multiply = 100 }
aroai_building_type_426_collected_data_2 = { value = var:aroai_building_type_426_collected_data
subtract = { value = var:aroai_building_type_426_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_426_collected_data_3 = { value = var:aroai_building_type_426_collected_data
subtract = { value = var:aroai_building_type_426_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_426_collected_data_4 = { value = var:aroai_building_type_426_collected_data
subtract = { value = var:aroai_building_type_426_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_426_collected_data_5 = { value = var:aroai_building_type_426_collected_data
divide = 10000000 floor = yes }
aroai_building_type_426_collected_data_average_of_1_and_2 = { value = aroai_building_type_426_collected_data_1
add = aroai_building_type_426_collected_data_2 divide = 2 floor = yes }
aroai_building_type_427_collected_data_1 = { value = var:aroai_building_type_427_collected_data
subtract = { value = var:aroai_building_type_427_collected_data floor = yes } multiply = 100 }
aroai_building_type_427_collected_data_2 = { value = var:aroai_building_type_427_collected_data
subtract = { value = var:aroai_building_type_427_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_427_collected_data_3 = { value = var:aroai_building_type_427_collected_data
subtract = { value = var:aroai_building_type_427_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_427_collected_data_4 = { value = var:aroai_building_type_427_collected_data
subtract = { value = var:aroai_building_type_427_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_427_collected_data_5 = { value = var:aroai_building_type_427_collected_data
divide = 10000000 floor = yes }
aroai_building_type_427_collected_data_average_of_1_and_2 = { value = aroai_building_type_427_collected_data_1
add = aroai_building_type_427_collected_data_2 divide = 2 floor = yes }
aroai_building_type_428_collected_data_1 = { value = var:aroai_building_type_428_collected_data
subtract = { value = var:aroai_building_type_428_collected_data floor = yes } multiply = 100 }
aroai_building_type_428_collected_data_2 = { value = var:aroai_building_type_428_collected_data
subtract = { value = var:aroai_building_type_428_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_428_collected_data_3 = { value = var:aroai_building_type_428_collected_data
subtract = { value = var:aroai_building_type_428_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_428_collected_data_4 = { value = var:aroai_building_type_428_collected_data
subtract = { value = var:aroai_building_type_428_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_428_collected_data_5 = { value = var:aroai_building_type_428_collected_data
divide = 10000000 floor = yes }
aroai_building_type_428_collected_data_average_of_1_and_2 = { value = aroai_building_type_428_collected_data_1
add = aroai_building_type_428_collected_data_2 divide = 2 floor = yes }
aroai_building_type_429_collected_data_1 = { value = var:aroai_building_type_429_collected_data
subtract = { value = var:aroai_building_type_429_collected_data floor = yes } multiply = 100 }
aroai_building_type_429_collected_data_2 = { value = var:aroai_building_type_429_collected_data
subtract = { value = var:aroai_building_type_429_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_429_collected_data_3 = { value = var:aroai_building_type_429_collected_data
subtract = { value = var:aroai_building_type_429_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_429_collected_data_4 = { value = var:aroai_building_type_429_collected_data
subtract = { value = var:aroai_building_type_429_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_429_collected_data_5 = { value = var:aroai_building_type_429_collected_data
divide = 10000000 floor = yes }
aroai_building_type_429_collected_data_average_of_1_and_2 = { value = aroai_building_type_429_collected_data_1
add = aroai_building_type_429_collected_data_2 divide = 2 floor = yes }
aroai_building_type_430_collected_data_1 = { value = var:aroai_building_type_430_collected_data
subtract = { value = var:aroai_building_type_430_collected_data floor = yes } multiply = 100 }
aroai_building_type_430_collected_data_2 = { value = var:aroai_building_type_430_collected_data
subtract = { value = var:aroai_building_type_430_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_430_collected_data_3 = { value = var:aroai_building_type_430_collected_data
subtract = { value = var:aroai_building_type_430_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_430_collected_data_4 = { value = var:aroai_building_type_430_collected_data
subtract = { value = var:aroai_building_type_430_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_430_collected_data_5 = { value = var:aroai_building_type_430_collected_data
divide = 10000000 floor = yes }
aroai_building_type_430_collected_data_average_of_1_and_2 = { value = aroai_building_type_430_collected_data_1
add = aroai_building_type_430_collected_data_2 divide = 2 floor = yes }
aroai_building_type_431_collected_data_1 = { value = var:aroai_building_type_431_collected_data
subtract = { value = var:aroai_building_type_431_collected_data floor = yes } multiply = 100 }
aroai_building_type_431_collected_data_2 = { value = var:aroai_building_type_431_collected_data
subtract = { value = var:aroai_building_type_431_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_431_collected_data_3 = { value = var:aroai_building_type_431_collected_data
subtract = { value = var:aroai_building_type_431_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_431_collected_data_4 = { value = var:aroai_building_type_431_collected_data
subtract = { value = var:aroai_building_type_431_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_431_collected_data_5 = { value = var:aroai_building_type_431_collected_data
divide = 10000000 floor = yes }
aroai_building_type_431_collected_data_average_of_1_and_2 = { value = aroai_building_type_431_collected_data_1
add = aroai_building_type_431_collected_data_2 divide = 2 floor = yes }
aroai_building_type_432_collected_data_1 = { value = var:aroai_building_type_432_collected_data
subtract = { value = var:aroai_building_type_432_collected_data floor = yes } multiply = 100 }
aroai_building_type_432_collected_data_2 = { value = var:aroai_building_type_432_collected_data
subtract = { value = var:aroai_building_type_432_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_432_collected_data_3 = { value = var:aroai_building_type_432_collected_data
subtract = { value = var:aroai_building_type_432_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_432_collected_data_4 = { value = var:aroai_building_type_432_collected_data
subtract = { value = var:aroai_building_type_432_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_432_collected_data_5 = { value = var:aroai_building_type_432_collected_data
divide = 10000000 floor = yes }
aroai_building_type_432_collected_data_average_of_1_and_2 = { value = aroai_building_type_432_collected_data_1
add = aroai_building_type_432_collected_data_2 divide = 2 floor = yes }
aroai_building_type_433_collected_data_1 = { value = var:aroai_building_type_433_collected_data
subtract = { value = var:aroai_building_type_433_collected_data floor = yes } multiply = 100 }
aroai_building_type_433_collected_data_2 = { value = var:aroai_building_type_433_collected_data
subtract = { value = var:aroai_building_type_433_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_433_collected_data_3 = { value = var:aroai_building_type_433_collected_data
subtract = { value = var:aroai_building_type_433_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_433_collected_data_4 = { value = var:aroai_building_type_433_collected_data
subtract = { value = var:aroai_building_type_433_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_433_collected_data_5 = { value = var:aroai_building_type_433_collected_data
divide = 10000000 floor = yes }
aroai_building_type_433_collected_data_average_of_1_and_2 = { value = aroai_building_type_433_collected_data_1
add = aroai_building_type_433_collected_data_2 divide = 2 floor = yes }
aroai_building_type_434_collected_data_1 = { value = var:aroai_building_type_434_collected_data
subtract = { value = var:aroai_building_type_434_collected_data floor = yes } multiply = 100 }
aroai_building_type_434_collected_data_2 = { value = var:aroai_building_type_434_collected_data
subtract = { value = var:aroai_building_type_434_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_434_collected_data_3 = { value = var:aroai_building_type_434_collected_data
subtract = { value = var:aroai_building_type_434_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_434_collected_data_4 = { value = var:aroai_building_type_434_collected_data
subtract = { value = var:aroai_building_type_434_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_434_collected_data_5 = { value = var:aroai_building_type_434_collected_data
divide = 10000000 floor = yes }
aroai_building_type_434_collected_data_average_of_1_and_2 = { value = aroai_building_type_434_collected_data_1
add = aroai_building_type_434_collected_data_2 divide = 2 floor = yes }
aroai_building_type_435_collected_data_1 = { value = var:aroai_building_type_435_collected_data
subtract = { value = var:aroai_building_type_435_collected_data floor = yes } multiply = 100 }
aroai_building_type_435_collected_data_2 = { value = var:aroai_building_type_435_collected_data
subtract = { value = var:aroai_building_type_435_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_435_collected_data_3 = { value = var:aroai_building_type_435_collected_data
subtract = { value = var:aroai_building_type_435_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_435_collected_data_4 = { value = var:aroai_building_type_435_collected_data
subtract = { value = var:aroai_building_type_435_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_435_collected_data_5 = { value = var:aroai_building_type_435_collected_data
divide = 10000000 floor = yes }
aroai_building_type_435_collected_data_average_of_1_and_2 = { value = aroai_building_type_435_collected_data_1
add = aroai_building_type_435_collected_data_2 divide = 2 floor = yes }
aroai_building_type_436_collected_data_1 = { value = var:aroai_building_type_436_collected_data
subtract = { value = var:aroai_building_type_436_collected_data floor = yes } multiply = 100 }
aroai_building_type_436_collected_data_2 = { value = var:aroai_building_type_436_collected_data
subtract = { value = var:aroai_building_type_436_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_436_collected_data_3 = { value = var:aroai_building_type_436_collected_data
subtract = { value = var:aroai_building_type_436_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_436_collected_data_4 = { value = var:aroai_building_type_436_collected_data
subtract = { value = var:aroai_building_type_436_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_436_collected_data_5 = { value = var:aroai_building_type_436_collected_data
divide = 10000000 floor = yes }
aroai_building_type_436_collected_data_average_of_1_and_2 = { value = aroai_building_type_436_collected_data_1
add = aroai_building_type_436_collected_data_2 divide = 2 floor = yes }
aroai_building_type_437_collected_data_1 = { value = var:aroai_building_type_437_collected_data
subtract = { value = var:aroai_building_type_437_collected_data floor = yes } multiply = 100 }
aroai_building_type_437_collected_data_2 = { value = var:aroai_building_type_437_collected_data
subtract = { value = var:aroai_building_type_437_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_437_collected_data_3 = { value = var:aroai_building_type_437_collected_data
subtract = { value = var:aroai_building_type_437_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_437_collected_data_4 = { value = var:aroai_building_type_437_collected_data
subtract = { value = var:aroai_building_type_437_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_437_collected_data_5 = { value = var:aroai_building_type_437_collected_data
divide = 10000000 floor = yes }
aroai_building_type_437_collected_data_average_of_1_and_2 = { value = aroai_building_type_437_collected_data_1
add = aroai_building_type_437_collected_data_2 divide = 2 floor = yes }
aroai_building_type_438_collected_data_1 = { value = var:aroai_building_type_438_collected_data
subtract = { value = var:aroai_building_type_438_collected_data floor = yes } multiply = 100 }
aroai_building_type_438_collected_data_2 = { value = var:aroai_building_type_438_collected_data
subtract = { value = var:aroai_building_type_438_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_438_collected_data_3 = { value = var:aroai_building_type_438_collected_data
subtract = { value = var:aroai_building_type_438_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_438_collected_data_4 = { value = var:aroai_building_type_438_collected_data
subtract = { value = var:aroai_building_type_438_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_438_collected_data_5 = { value = var:aroai_building_type_438_collected_data
divide = 10000000 floor = yes }
aroai_building_type_438_collected_data_average_of_1_and_2 = { value = aroai_building_type_438_collected_data_1
add = aroai_building_type_438_collected_data_2 divide = 2 floor = yes }
aroai_building_type_439_collected_data_1 = { value = var:aroai_building_type_439_collected_data
subtract = { value = var:aroai_building_type_439_collected_data floor = yes } multiply = 100 }
aroai_building_type_439_collected_data_2 = { value = var:aroai_building_type_439_collected_data
subtract = { value = var:aroai_building_type_439_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_439_collected_data_3 = { value = var:aroai_building_type_439_collected_data
subtract = { value = var:aroai_building_type_439_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_439_collected_data_4 = { value = var:aroai_building_type_439_collected_data
subtract = { value = var:aroai_building_type_439_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_439_collected_data_5 = { value = var:aroai_building_type_439_collected_data
divide = 10000000 floor = yes }
aroai_building_type_439_collected_data_average_of_1_and_2 = { value = aroai_building_type_439_collected_data_1
add = aroai_building_type_439_collected_data_2 divide = 2 floor = yes }
aroai_building_type_440_collected_data_1 = { value = var:aroai_building_type_440_collected_data
subtract = { value = var:aroai_building_type_440_collected_data floor = yes } multiply = 100 }
aroai_building_type_440_collected_data_2 = { value = var:aroai_building_type_440_collected_data
subtract = { value = var:aroai_building_type_440_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_440_collected_data_3 = { value = var:aroai_building_type_440_collected_data
subtract = { value = var:aroai_building_type_440_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_440_collected_data_4 = { value = var:aroai_building_type_440_collected_data
subtract = { value = var:aroai_building_type_440_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_440_collected_data_5 = { value = var:aroai_building_type_440_collected_data
divide = 10000000 floor = yes }
aroai_building_type_440_collected_data_average_of_1_and_2 = { value = aroai_building_type_440_collected_data_1
add = aroai_building_type_440_collected_data_2 divide = 2 floor = yes }
aroai_building_type_441_collected_data_1 = { value = var:aroai_building_type_441_collected_data
subtract = { value = var:aroai_building_type_441_collected_data floor = yes } multiply = 100 }
aroai_building_type_441_collected_data_2 = { value = var:aroai_building_type_441_collected_data
subtract = { value = var:aroai_building_type_441_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_441_collected_data_3 = { value = var:aroai_building_type_441_collected_data
subtract = { value = var:aroai_building_type_441_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_441_collected_data_4 = { value = var:aroai_building_type_441_collected_data
subtract = { value = var:aroai_building_type_441_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_441_collected_data_5 = { value = var:aroai_building_type_441_collected_data
divide = 10000000 floor = yes }
aroai_building_type_441_collected_data_average_of_1_and_2 = { value = aroai_building_type_441_collected_data_1
add = aroai_building_type_441_collected_data_2 divide = 2 floor = yes }
aroai_building_type_442_collected_data_1 = { value = var:aroai_building_type_442_collected_data
subtract = { value = var:aroai_building_type_442_collected_data floor = yes } multiply = 100 }
aroai_building_type_442_collected_data_2 = { value = var:aroai_building_type_442_collected_data
subtract = { value = var:aroai_building_type_442_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_442_collected_data_3 = { value = var:aroai_building_type_442_collected_data
subtract = { value = var:aroai_building_type_442_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_442_collected_data_4 = { value = var:aroai_building_type_442_collected_data
subtract = { value = var:aroai_building_type_442_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_442_collected_data_5 = { value = var:aroai_building_type_442_collected_data
divide = 10000000 floor = yes }
aroai_building_type_442_collected_data_average_of_1_and_2 = { value = aroai_building_type_442_collected_data_1
add = aroai_building_type_442_collected_data_2 divide = 2 floor = yes }
aroai_building_type_443_collected_data_1 = { value = var:aroai_building_type_443_collected_data
subtract = { value = var:aroai_building_type_443_collected_data floor = yes } multiply = 100 }
aroai_building_type_443_collected_data_2 = { value = var:aroai_building_type_443_collected_data
subtract = { value = var:aroai_building_type_443_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_443_collected_data_3 = { value = var:aroai_building_type_443_collected_data
subtract = { value = var:aroai_building_type_443_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_443_collected_data_4 = { value = var:aroai_building_type_443_collected_data
subtract = { value = var:aroai_building_type_443_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_443_collected_data_5 = { value = var:aroai_building_type_443_collected_data
divide = 10000000 floor = yes }
aroai_building_type_443_collected_data_average_of_1_and_2 = { value = aroai_building_type_443_collected_data_1
add = aroai_building_type_443_collected_data_2 divide = 2 floor = yes }
aroai_building_type_444_collected_data_1 = { value = var:aroai_building_type_444_collected_data
subtract = { value = var:aroai_building_type_444_collected_data floor = yes } multiply = 100 }
aroai_building_type_444_collected_data_2 = { value = var:aroai_building_type_444_collected_data
subtract = { value = var:aroai_building_type_444_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_444_collected_data_3 = { value = var:aroai_building_type_444_collected_data
subtract = { value = var:aroai_building_type_444_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_444_collected_data_4 = { value = var:aroai_building_type_444_collected_data
subtract = { value = var:aroai_building_type_444_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_444_collected_data_5 = { value = var:aroai_building_type_444_collected_data
divide = 10000000 floor = yes }
aroai_building_type_444_collected_data_average_of_1_and_2 = { value = aroai_building_type_444_collected_data_1
add = aroai_building_type_444_collected_data_2 divide = 2 floor = yes }
aroai_building_type_445_collected_data_1 = { value = var:aroai_building_type_445_collected_data
subtract = { value = var:aroai_building_type_445_collected_data floor = yes } multiply = 100 }
aroai_building_type_445_collected_data_2 = { value = var:aroai_building_type_445_collected_data
subtract = { value = var:aroai_building_type_445_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_445_collected_data_3 = { value = var:aroai_building_type_445_collected_data
subtract = { value = var:aroai_building_type_445_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_445_collected_data_4 = { value = var:aroai_building_type_445_collected_data
subtract = { value = var:aroai_building_type_445_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_445_collected_data_5 = { value = var:aroai_building_type_445_collected_data
divide = 10000000 floor = yes }
aroai_building_type_445_collected_data_average_of_1_and_2 = { value = aroai_building_type_445_collected_data_1
add = aroai_building_type_445_collected_data_2 divide = 2 floor = yes }
aroai_building_type_446_collected_data_1 = { value = var:aroai_building_type_446_collected_data
subtract = { value = var:aroai_building_type_446_collected_data floor = yes } multiply = 100 }
aroai_building_type_446_collected_data_2 = { value = var:aroai_building_type_446_collected_data
subtract = { value = var:aroai_building_type_446_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_446_collected_data_3 = { value = var:aroai_building_type_446_collected_data
subtract = { value = var:aroai_building_type_446_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_446_collected_data_4 = { value = var:aroai_building_type_446_collected_data
subtract = { value = var:aroai_building_type_446_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_446_collected_data_5 = { value = var:aroai_building_type_446_collected_data
divide = 10000000 floor = yes }
aroai_building_type_446_collected_data_average_of_1_and_2 = { value = aroai_building_type_446_collected_data_1
add = aroai_building_type_446_collected_data_2 divide = 2 floor = yes }
aroai_building_type_447_collected_data_1 = { value = var:aroai_building_type_447_collected_data
subtract = { value = var:aroai_building_type_447_collected_data floor = yes } multiply = 100 }
aroai_building_type_447_collected_data_2 = { value = var:aroai_building_type_447_collected_data
subtract = { value = var:aroai_building_type_447_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_447_collected_data_3 = { value = var:aroai_building_type_447_collected_data
subtract = { value = var:aroai_building_type_447_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_447_collected_data_4 = { value = var:aroai_building_type_447_collected_data
subtract = { value = var:aroai_building_type_447_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_447_collected_data_5 = { value = var:aroai_building_type_447_collected_data
divide = 10000000 floor = yes }
aroai_building_type_447_collected_data_average_of_1_and_2 = { value = aroai_building_type_447_collected_data_1
add = aroai_building_type_447_collected_data_2 divide = 2 floor = yes }
aroai_building_type_448_collected_data_1 = { value = var:aroai_building_type_448_collected_data
subtract = { value = var:aroai_building_type_448_collected_data floor = yes } multiply = 100 }
aroai_building_type_448_collected_data_2 = { value = var:aroai_building_type_448_collected_data
subtract = { value = var:aroai_building_type_448_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_448_collected_data_3 = { value = var:aroai_building_type_448_collected_data
subtract = { value = var:aroai_building_type_448_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_448_collected_data_4 = { value = var:aroai_building_type_448_collected_data
subtract = { value = var:aroai_building_type_448_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_448_collected_data_5 = { value = var:aroai_building_type_448_collected_data
divide = 10000000 floor = yes }
aroai_building_type_448_collected_data_average_of_1_and_2 = { value = aroai_building_type_448_collected_data_1
add = aroai_building_type_448_collected_data_2 divide = 2 floor = yes }
aroai_building_type_449_collected_data_1 = { value = var:aroai_building_type_449_collected_data
subtract = { value = var:aroai_building_type_449_collected_data floor = yes } multiply = 100 }
aroai_building_type_449_collected_data_2 = { value = var:aroai_building_type_449_collected_data
subtract = { value = var:aroai_building_type_449_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_449_collected_data_3 = { value = var:aroai_building_type_449_collected_data
subtract = { value = var:aroai_building_type_449_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_449_collected_data_4 = { value = var:aroai_building_type_449_collected_data
subtract = { value = var:aroai_building_type_449_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_449_collected_data_5 = { value = var:aroai_building_type_449_collected_data
divide = 10000000 floor = yes }
aroai_building_type_449_collected_data_average_of_1_and_2 = { value = aroai_building_type_449_collected_data_1
add = aroai_building_type_449_collected_data_2 divide = 2 floor = yes }
aroai_building_type_450_collected_data_1 = { value = var:aroai_building_type_450_collected_data
subtract = { value = var:aroai_building_type_450_collected_data floor = yes } multiply = 100 }
aroai_building_type_450_collected_data_2 = { value = var:aroai_building_type_450_collected_data
subtract = { value = var:aroai_building_type_450_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_450_collected_data_3 = { value = var:aroai_building_type_450_collected_data
subtract = { value = var:aroai_building_type_450_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_450_collected_data_4 = { value = var:aroai_building_type_450_collected_data
subtract = { value = var:aroai_building_type_450_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_450_collected_data_5 = { value = var:aroai_building_type_450_collected_data
divide = 10000000 floor = yes }
aroai_building_type_450_collected_data_average_of_1_and_2 = { value = aroai_building_type_450_collected_data_1
add = aroai_building_type_450_collected_data_2 divide = 2 floor = yes }
aroai_building_type_451_collected_data_1 = { value = var:aroai_building_type_451_collected_data
subtract = { value = var:aroai_building_type_451_collected_data floor = yes } multiply = 100 }
aroai_building_type_451_collected_data_2 = { value = var:aroai_building_type_451_collected_data
subtract = { value = var:aroai_building_type_451_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_451_collected_data_3 = { value = var:aroai_building_type_451_collected_data
subtract = { value = var:aroai_building_type_451_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_451_collected_data_4 = { value = var:aroai_building_type_451_collected_data
subtract = { value = var:aroai_building_type_451_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_451_collected_data_5 = { value = var:aroai_building_type_451_collected_data
divide = 10000000 floor = yes }
aroai_building_type_451_collected_data_average_of_1_and_2 = { value = aroai_building_type_451_collected_data_1
add = aroai_building_type_451_collected_data_2 divide = 2 floor = yes }
aroai_building_type_452_collected_data_1 = { value = var:aroai_building_type_452_collected_data
subtract = { value = var:aroai_building_type_452_collected_data floor = yes } multiply = 100 }
aroai_building_type_452_collected_data_2 = { value = var:aroai_building_type_452_collected_data
subtract = { value = var:aroai_building_type_452_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_452_collected_data_3 = { value = var:aroai_building_type_452_collected_data
subtract = { value = var:aroai_building_type_452_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_452_collected_data_4 = { value = var:aroai_building_type_452_collected_data
subtract = { value = var:aroai_building_type_452_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_452_collected_data_5 = { value = var:aroai_building_type_452_collected_data
divide = 10000000 floor = yes }
aroai_building_type_452_collected_data_average_of_1_and_2 = { value = aroai_building_type_452_collected_data_1
add = aroai_building_type_452_collected_data_2 divide = 2 floor = yes }
aroai_building_type_453_collected_data_1 = { value = var:aroai_building_type_453_collected_data
subtract = { value = var:aroai_building_type_453_collected_data floor = yes } multiply = 100 }
aroai_building_type_453_collected_data_2 = { value = var:aroai_building_type_453_collected_data
subtract = { value = var:aroai_building_type_453_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_453_collected_data_3 = { value = var:aroai_building_type_453_collected_data
subtract = { value = var:aroai_building_type_453_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_453_collected_data_4 = { value = var:aroai_building_type_453_collected_data
subtract = { value = var:aroai_building_type_453_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_453_collected_data_5 = { value = var:aroai_building_type_453_collected_data
divide = 10000000 floor = yes }
aroai_building_type_453_collected_data_average_of_1_and_2 = { value = aroai_building_type_453_collected_data_1
add = aroai_building_type_453_collected_data_2 divide = 2 floor = yes }
aroai_building_type_454_collected_data_1 = { value = var:aroai_building_type_454_collected_data
subtract = { value = var:aroai_building_type_454_collected_data floor = yes } multiply = 100 }
aroai_building_type_454_collected_data_2 = { value = var:aroai_building_type_454_collected_data
subtract = { value = var:aroai_building_type_454_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_454_collected_data_3 = { value = var:aroai_building_type_454_collected_data
subtract = { value = var:aroai_building_type_454_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_454_collected_data_4 = { value = var:aroai_building_type_454_collected_data
subtract = { value = var:aroai_building_type_454_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_454_collected_data_5 = { value = var:aroai_building_type_454_collected_data
divide = 10000000 floor = yes }
aroai_building_type_454_collected_data_average_of_1_and_2 = { value = aroai_building_type_454_collected_data_1
add = aroai_building_type_454_collected_data_2 divide = 2 floor = yes }
aroai_building_type_455_collected_data_1 = { value = var:aroai_building_type_455_collected_data
subtract = { value = var:aroai_building_type_455_collected_data floor = yes } multiply = 100 }
aroai_building_type_455_collected_data_2 = { value = var:aroai_building_type_455_collected_data
subtract = { value = var:aroai_building_type_455_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_455_collected_data_3 = { value = var:aroai_building_type_455_collected_data
subtract = { value = var:aroai_building_type_455_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_455_collected_data_4 = { value = var:aroai_building_type_455_collected_data
subtract = { value = var:aroai_building_type_455_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_455_collected_data_5 = { value = var:aroai_building_type_455_collected_data
divide = 10000000 floor = yes }
aroai_building_type_455_collected_data_average_of_1_and_2 = { value = aroai_building_type_455_collected_data_1
add = aroai_building_type_455_collected_data_2 divide = 2 floor = yes }
aroai_building_type_456_collected_data_1 = { value = var:aroai_building_type_456_collected_data
subtract = { value = var:aroai_building_type_456_collected_data floor = yes } multiply = 100 }
aroai_building_type_456_collected_data_2 = { value = var:aroai_building_type_456_collected_data
subtract = { value = var:aroai_building_type_456_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_456_collected_data_3 = { value = var:aroai_building_type_456_collected_data
subtract = { value = var:aroai_building_type_456_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_456_collected_data_4 = { value = var:aroai_building_type_456_collected_data
subtract = { value = var:aroai_building_type_456_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_456_collected_data_5 = { value = var:aroai_building_type_456_collected_data
divide = 10000000 floor = yes }
aroai_building_type_456_collected_data_average_of_1_and_2 = { value = aroai_building_type_456_collected_data_1
add = aroai_building_type_456_collected_data_2 divide = 2 floor = yes }
aroai_building_type_457_collected_data_1 = { value = var:aroai_building_type_457_collected_data
subtract = { value = var:aroai_building_type_457_collected_data floor = yes } multiply = 100 }
aroai_building_type_457_collected_data_2 = { value = var:aroai_building_type_457_collected_data
subtract = { value = var:aroai_building_type_457_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_457_collected_data_3 = { value = var:aroai_building_type_457_collected_data
subtract = { value = var:aroai_building_type_457_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_457_collected_data_4 = { value = var:aroai_building_type_457_collected_data
subtract = { value = var:aroai_building_type_457_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_457_collected_data_5 = { value = var:aroai_building_type_457_collected_data
divide = 10000000 floor = yes }
aroai_building_type_457_collected_data_average_of_1_and_2 = { value = aroai_building_type_457_collected_data_1
add = aroai_building_type_457_collected_data_2 divide = 2 floor = yes }
aroai_building_type_458_collected_data_1 = { value = var:aroai_building_type_458_collected_data
subtract = { value = var:aroai_building_type_458_collected_data floor = yes } multiply = 100 }
aroai_building_type_458_collected_data_2 = { value = var:aroai_building_type_458_collected_data
subtract = { value = var:aroai_building_type_458_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_458_collected_data_3 = { value = var:aroai_building_type_458_collected_data
subtract = { value = var:aroai_building_type_458_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_458_collected_data_4 = { value = var:aroai_building_type_458_collected_data
subtract = { value = var:aroai_building_type_458_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_458_collected_data_5 = { value = var:aroai_building_type_458_collected_data
divide = 10000000 floor = yes }
aroai_building_type_458_collected_data_average_of_1_and_2 = { value = aroai_building_type_458_collected_data_1
add = aroai_building_type_458_collected_data_2 divide = 2 floor = yes }
aroai_building_type_459_collected_data_1 = { value = var:aroai_building_type_459_collected_data
subtract = { value = var:aroai_building_type_459_collected_data floor = yes } multiply = 100 }
aroai_building_type_459_collected_data_2 = { value = var:aroai_building_type_459_collected_data
subtract = { value = var:aroai_building_type_459_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_459_collected_data_3 = { value = var:aroai_building_type_459_collected_data
subtract = { value = var:aroai_building_type_459_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_459_collected_data_4 = { value = var:aroai_building_type_459_collected_data
subtract = { value = var:aroai_building_type_459_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_459_collected_data_5 = { value = var:aroai_building_type_459_collected_data
divide = 10000000 floor = yes }
aroai_building_type_459_collected_data_average_of_1_and_2 = { value = aroai_building_type_459_collected_data_1
add = aroai_building_type_459_collected_data_2 divide = 2 floor = yes }
aroai_building_type_460_collected_data_1 = { value = var:aroai_building_type_460_collected_data
subtract = { value = var:aroai_building_type_460_collected_data floor = yes } multiply = 100 }
aroai_building_type_460_collected_data_2 = { value = var:aroai_building_type_460_collected_data
subtract = { value = var:aroai_building_type_460_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_460_collected_data_3 = { value = var:aroai_building_type_460_collected_data
subtract = { value = var:aroai_building_type_460_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_460_collected_data_4 = { value = var:aroai_building_type_460_collected_data
subtract = { value = var:aroai_building_type_460_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_460_collected_data_5 = { value = var:aroai_building_type_460_collected_data
divide = 10000000 floor = yes }
aroai_building_type_460_collected_data_average_of_1_and_2 = { value = aroai_building_type_460_collected_data_1
add = aroai_building_type_460_collected_data_2 divide = 2 floor = yes }
aroai_building_type_461_collected_data_1 = { value = var:aroai_building_type_461_collected_data
subtract = { value = var:aroai_building_type_461_collected_data floor = yes } multiply = 100 }
aroai_building_type_461_collected_data_2 = { value = var:aroai_building_type_461_collected_data
subtract = { value = var:aroai_building_type_461_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_461_collected_data_3 = { value = var:aroai_building_type_461_collected_data
subtract = { value = var:aroai_building_type_461_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_461_collected_data_4 = { value = var:aroai_building_type_461_collected_data
subtract = { value = var:aroai_building_type_461_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_461_collected_data_5 = { value = var:aroai_building_type_461_collected_data
divide = 10000000 floor = yes }
aroai_building_type_461_collected_data_average_of_1_and_2 = { value = aroai_building_type_461_collected_data_1
add = aroai_building_type_461_collected_data_2 divide = 2 floor = yes }
aroai_building_type_462_collected_data_1 = { value = var:aroai_building_type_462_collected_data
subtract = { value = var:aroai_building_type_462_collected_data floor = yes } multiply = 100 }
aroai_building_type_462_collected_data_2 = { value = var:aroai_building_type_462_collected_data
subtract = { value = var:aroai_building_type_462_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_462_collected_data_3 = { value = var:aroai_building_type_462_collected_data
subtract = { value = var:aroai_building_type_462_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_462_collected_data_4 = { value = var:aroai_building_type_462_collected_data
subtract = { value = var:aroai_building_type_462_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_462_collected_data_5 = { value = var:aroai_building_type_462_collected_data
divide = 10000000 floor = yes }
aroai_building_type_462_collected_data_average_of_1_and_2 = { value = aroai_building_type_462_collected_data_1
add = aroai_building_type_462_collected_data_2 divide = 2 floor = yes }
aroai_building_type_463_collected_data_1 = { value = var:aroai_building_type_463_collected_data
subtract = { value = var:aroai_building_type_463_collected_data floor = yes } multiply = 100 }
aroai_building_type_463_collected_data_2 = { value = var:aroai_building_type_463_collected_data
subtract = { value = var:aroai_building_type_463_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_463_collected_data_3 = { value = var:aroai_building_type_463_collected_data
subtract = { value = var:aroai_building_type_463_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_463_collected_data_4 = { value = var:aroai_building_type_463_collected_data
subtract = { value = var:aroai_building_type_463_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_463_collected_data_5 = { value = var:aroai_building_type_463_collected_data
divide = 10000000 floor = yes }
aroai_building_type_463_collected_data_average_of_1_and_2 = { value = aroai_building_type_463_collected_data_1
add = aroai_building_type_463_collected_data_2 divide = 2 floor = yes }
aroai_building_type_464_collected_data_1 = { value = var:aroai_building_type_464_collected_data
subtract = { value = var:aroai_building_type_464_collected_data floor = yes } multiply = 100 }
aroai_building_type_464_collected_data_2 = { value = var:aroai_building_type_464_collected_data
subtract = { value = var:aroai_building_type_464_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_464_collected_data_3 = { value = var:aroai_building_type_464_collected_data
subtract = { value = var:aroai_building_type_464_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_464_collected_data_4 = { value = var:aroai_building_type_464_collected_data
subtract = { value = var:aroai_building_type_464_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_464_collected_data_5 = { value = var:aroai_building_type_464_collected_data
divide = 10000000 floor = yes }
aroai_building_type_464_collected_data_average_of_1_and_2 = { value = aroai_building_type_464_collected_data_1
add = aroai_building_type_464_collected_data_2 divide = 2 floor = yes }
aroai_building_type_465_collected_data_1 = { value = var:aroai_building_type_465_collected_data
subtract = { value = var:aroai_building_type_465_collected_data floor = yes } multiply = 100 }
aroai_building_type_465_collected_data_2 = { value = var:aroai_building_type_465_collected_data
subtract = { value = var:aroai_building_type_465_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_465_collected_data_3 = { value = var:aroai_building_type_465_collected_data
subtract = { value = var:aroai_building_type_465_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_465_collected_data_4 = { value = var:aroai_building_type_465_collected_data
subtract = { value = var:aroai_building_type_465_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_465_collected_data_5 = { value = var:aroai_building_type_465_collected_data
divide = 10000000 floor = yes }
aroai_building_type_465_collected_data_average_of_1_and_2 = { value = aroai_building_type_465_collected_data_1
add = aroai_building_type_465_collected_data_2 divide = 2 floor = yes }
aroai_building_type_466_collected_data_1 = { value = var:aroai_building_type_466_collected_data
subtract = { value = var:aroai_building_type_466_collected_data floor = yes } multiply = 100 }
aroai_building_type_466_collected_data_2 = { value = var:aroai_building_type_466_collected_data
subtract = { value = var:aroai_building_type_466_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_466_collected_data_3 = { value = var:aroai_building_type_466_collected_data
subtract = { value = var:aroai_building_type_466_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_466_collected_data_4 = { value = var:aroai_building_type_466_collected_data
subtract = { value = var:aroai_building_type_466_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_466_collected_data_5 = { value = var:aroai_building_type_466_collected_data
divide = 10000000 floor = yes }
aroai_building_type_466_collected_data_average_of_1_and_2 = { value = aroai_building_type_466_collected_data_1
add = aroai_building_type_466_collected_data_2 divide = 2 floor = yes }
aroai_building_type_467_collected_data_1 = { value = var:aroai_building_type_467_collected_data
subtract = { value = var:aroai_building_type_467_collected_data floor = yes } multiply = 100 }
aroai_building_type_467_collected_data_2 = { value = var:aroai_building_type_467_collected_data
subtract = { value = var:aroai_building_type_467_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_467_collected_data_3 = { value = var:aroai_building_type_467_collected_data
subtract = { value = var:aroai_building_type_467_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_467_collected_data_4 = { value = var:aroai_building_type_467_collected_data
subtract = { value = var:aroai_building_type_467_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_467_collected_data_5 = { value = var:aroai_building_type_467_collected_data
divide = 10000000 floor = yes }
aroai_building_type_467_collected_data_average_of_1_and_2 = { value = aroai_building_type_467_collected_data_1
add = aroai_building_type_467_collected_data_2 divide = 2 floor = yes }
aroai_building_type_468_collected_data_1 = { value = var:aroai_building_type_468_collected_data
subtract = { value = var:aroai_building_type_468_collected_data floor = yes } multiply = 100 }
aroai_building_type_468_collected_data_2 = { value = var:aroai_building_type_468_collected_data
subtract = { value = var:aroai_building_type_468_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_468_collected_data_3 = { value = var:aroai_building_type_468_collected_data
subtract = { value = var:aroai_building_type_468_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_468_collected_data_4 = { value = var:aroai_building_type_468_collected_data
subtract = { value = var:aroai_building_type_468_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_468_collected_data_5 = { value = var:aroai_building_type_468_collected_data
divide = 10000000 floor = yes }
aroai_building_type_468_collected_data_average_of_1_and_2 = { value = aroai_building_type_468_collected_data_1
add = aroai_building_type_468_collected_data_2 divide = 2 floor = yes }
aroai_building_type_469_collected_data_1 = { value = var:aroai_building_type_469_collected_data
subtract = { value = var:aroai_building_type_469_collected_data floor = yes } multiply = 100 }
aroai_building_type_469_collected_data_2 = { value = var:aroai_building_type_469_collected_data
subtract = { value = var:aroai_building_type_469_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_469_collected_data_3 = { value = var:aroai_building_type_469_collected_data
subtract = { value = var:aroai_building_type_469_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_469_collected_data_4 = { value = var:aroai_building_type_469_collected_data
subtract = { value = var:aroai_building_type_469_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_469_collected_data_5 = { value = var:aroai_building_type_469_collected_data
divide = 10000000 floor = yes }
aroai_building_type_469_collected_data_average_of_1_and_2 = { value = aroai_building_type_469_collected_data_1
add = aroai_building_type_469_collected_data_2 divide = 2 floor = yes }
aroai_building_type_470_collected_data_1 = { value = var:aroai_building_type_470_collected_data
subtract = { value = var:aroai_building_type_470_collected_data floor = yes } multiply = 100 }
aroai_building_type_470_collected_data_2 = { value = var:aroai_building_type_470_collected_data
subtract = { value = var:aroai_building_type_470_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_470_collected_data_3 = { value = var:aroai_building_type_470_collected_data
subtract = { value = var:aroai_building_type_470_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_470_collected_data_4 = { value = var:aroai_building_type_470_collected_data
subtract = { value = var:aroai_building_type_470_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_470_collected_data_5 = { value = var:aroai_building_type_470_collected_data
divide = 10000000 floor = yes }
aroai_building_type_470_collected_data_average_of_1_and_2 = { value = aroai_building_type_470_collected_data_1
add = aroai_building_type_470_collected_data_2 divide = 2 floor = yes }
aroai_building_type_471_collected_data_1 = { value = var:aroai_building_type_471_collected_data
subtract = { value = var:aroai_building_type_471_collected_data floor = yes } multiply = 100 }
aroai_building_type_471_collected_data_2 = { value = var:aroai_building_type_471_collected_data
subtract = { value = var:aroai_building_type_471_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_471_collected_data_3 = { value = var:aroai_building_type_471_collected_data
subtract = { value = var:aroai_building_type_471_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_471_collected_data_4 = { value = var:aroai_building_type_471_collected_data
subtract = { value = var:aroai_building_type_471_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_471_collected_data_5 = { value = var:aroai_building_type_471_collected_data
divide = 10000000 floor = yes }
aroai_building_type_471_collected_data_average_of_1_and_2 = { value = aroai_building_type_471_collected_data_1
add = aroai_building_type_471_collected_data_2 divide = 2 floor = yes }
aroai_building_type_472_collected_data_1 = { value = var:aroai_building_type_472_collected_data
subtract = { value = var:aroai_building_type_472_collected_data floor = yes } multiply = 100 }
aroai_building_type_472_collected_data_2 = { value = var:aroai_building_type_472_collected_data
subtract = { value = var:aroai_building_type_472_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_472_collected_data_3 = { value = var:aroai_building_type_472_collected_data
subtract = { value = var:aroai_building_type_472_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_472_collected_data_4 = { value = var:aroai_building_type_472_collected_data
subtract = { value = var:aroai_building_type_472_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_472_collected_data_5 = { value = var:aroai_building_type_472_collected_data
divide = 10000000 floor = yes }
aroai_building_type_472_collected_data_average_of_1_and_2 = { value = aroai_building_type_472_collected_data_1
add = aroai_building_type_472_collected_data_2 divide = 2 floor = yes }
aroai_building_type_473_collected_data_1 = { value = var:aroai_building_type_473_collected_data
subtract = { value = var:aroai_building_type_473_collected_data floor = yes } multiply = 100 }
aroai_building_type_473_collected_data_2 = { value = var:aroai_building_type_473_collected_data
subtract = { value = var:aroai_building_type_473_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_473_collected_data_3 = { value = var:aroai_building_type_473_collected_data
subtract = { value = var:aroai_building_type_473_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_473_collected_data_4 = { value = var:aroai_building_type_473_collected_data
subtract = { value = var:aroai_building_type_473_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_473_collected_data_5 = { value = var:aroai_building_type_473_collected_data
divide = 10000000 floor = yes }
aroai_building_type_473_collected_data_average_of_1_and_2 = { value = aroai_building_type_473_collected_data_1
add = aroai_building_type_473_collected_data_2 divide = 2 floor = yes }
aroai_building_type_474_collected_data_1 = { value = var:aroai_building_type_474_collected_data
subtract = { value = var:aroai_building_type_474_collected_data floor = yes } multiply = 100 }
aroai_building_type_474_collected_data_2 = { value = var:aroai_building_type_474_collected_data
subtract = { value = var:aroai_building_type_474_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_474_collected_data_3 = { value = var:aroai_building_type_474_collected_data
subtract = { value = var:aroai_building_type_474_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_474_collected_data_4 = { value = var:aroai_building_type_474_collected_data
subtract = { value = var:aroai_building_type_474_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_474_collected_data_5 = { value = var:aroai_building_type_474_collected_data
divide = 10000000 floor = yes }
aroai_building_type_474_collected_data_average_of_1_and_2 = { value = aroai_building_type_474_collected_data_1
add = aroai_building_type_474_collected_data_2 divide = 2 floor = yes }
aroai_building_type_475_collected_data_1 = { value = var:aroai_building_type_475_collected_data
subtract = { value = var:aroai_building_type_475_collected_data floor = yes } multiply = 100 }
aroai_building_type_475_collected_data_2 = { value = var:aroai_building_type_475_collected_data
subtract = { value = var:aroai_building_type_475_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_475_collected_data_3 = { value = var:aroai_building_type_475_collected_data
subtract = { value = var:aroai_building_type_475_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_475_collected_data_4 = { value = var:aroai_building_type_475_collected_data
subtract = { value = var:aroai_building_type_475_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_475_collected_data_5 = { value = var:aroai_building_type_475_collected_data
divide = 10000000 floor = yes }
aroai_building_type_475_collected_data_average_of_1_and_2 = { value = aroai_building_type_475_collected_data_1
add = aroai_building_type_475_collected_data_2 divide = 2 floor = yes }
aroai_building_type_476_collected_data_1 = { value = var:aroai_building_type_476_collected_data
subtract = { value = var:aroai_building_type_476_collected_data floor = yes } multiply = 100 }
aroai_building_type_476_collected_data_2 = { value = var:aroai_building_type_476_collected_data
subtract = { value = var:aroai_building_type_476_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_476_collected_data_3 = { value = var:aroai_building_type_476_collected_data
subtract = { value = var:aroai_building_type_476_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_476_collected_data_4 = { value = var:aroai_building_type_476_collected_data
subtract = { value = var:aroai_building_type_476_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_476_collected_data_5 = { value = var:aroai_building_type_476_collected_data
divide = 10000000 floor = yes }
aroai_building_type_476_collected_data_average_of_1_and_2 = { value = aroai_building_type_476_collected_data_1
add = aroai_building_type_476_collected_data_2 divide = 2 floor = yes }
aroai_building_type_477_collected_data_1 = { value = var:aroai_building_type_477_collected_data
subtract = { value = var:aroai_building_type_477_collected_data floor = yes } multiply = 100 }
aroai_building_type_477_collected_data_2 = { value = var:aroai_building_type_477_collected_data
subtract = { value = var:aroai_building_type_477_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_477_collected_data_3 = { value = var:aroai_building_type_477_collected_data
subtract = { value = var:aroai_building_type_477_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_477_collected_data_4 = { value = var:aroai_building_type_477_collected_data
subtract = { value = var:aroai_building_type_477_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_477_collected_data_5 = { value = var:aroai_building_type_477_collected_data
divide = 10000000 floor = yes }
aroai_building_type_477_collected_data_average_of_1_and_2 = { value = aroai_building_type_477_collected_data_1
add = aroai_building_type_477_collected_data_2 divide = 2 floor = yes }
aroai_building_type_478_collected_data_1 = { value = var:aroai_building_type_478_collected_data
subtract = { value = var:aroai_building_type_478_collected_data floor = yes } multiply = 100 }
aroai_building_type_478_collected_data_2 = { value = var:aroai_building_type_478_collected_data
subtract = { value = var:aroai_building_type_478_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_478_collected_data_3 = { value = var:aroai_building_type_478_collected_data
subtract = { value = var:aroai_building_type_478_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_478_collected_data_4 = { value = var:aroai_building_type_478_collected_data
subtract = { value = var:aroai_building_type_478_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_478_collected_data_5 = { value = var:aroai_building_type_478_collected_data
divide = 10000000 floor = yes }
aroai_building_type_478_collected_data_average_of_1_and_2 = { value = aroai_building_type_478_collected_data_1
add = aroai_building_type_478_collected_data_2 divide = 2 floor = yes }
aroai_building_type_479_collected_data_1 = { value = var:aroai_building_type_479_collected_data
subtract = { value = var:aroai_building_type_479_collected_data floor = yes } multiply = 100 }
aroai_building_type_479_collected_data_2 = { value = var:aroai_building_type_479_collected_data
subtract = { value = var:aroai_building_type_479_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_479_collected_data_3 = { value = var:aroai_building_type_479_collected_data
subtract = { value = var:aroai_building_type_479_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_479_collected_data_4 = { value = var:aroai_building_type_479_collected_data
subtract = { value = var:aroai_building_type_479_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_479_collected_data_5 = { value = var:aroai_building_type_479_collected_data
divide = 10000000 floor = yes }
aroai_building_type_479_collected_data_average_of_1_and_2 = { value = aroai_building_type_479_collected_data_1
add = aroai_building_type_479_collected_data_2 divide = 2 floor = yes }
aroai_building_type_480_collected_data_1 = { value = var:aroai_building_type_480_collected_data
subtract = { value = var:aroai_building_type_480_collected_data floor = yes } multiply = 100 }
aroai_building_type_480_collected_data_2 = { value = var:aroai_building_type_480_collected_data
subtract = { value = var:aroai_building_type_480_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_480_collected_data_3 = { value = var:aroai_building_type_480_collected_data
subtract = { value = var:aroai_building_type_480_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_480_collected_data_4 = { value = var:aroai_building_type_480_collected_data
subtract = { value = var:aroai_building_type_480_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_480_collected_data_5 = { value = var:aroai_building_type_480_collected_data
divide = 10000000 floor = yes }
aroai_building_type_480_collected_data_average_of_1_and_2 = { value = aroai_building_type_480_collected_data_1
add = aroai_building_type_480_collected_data_2 divide = 2 floor = yes }
aroai_building_type_481_collected_data_1 = { value = var:aroai_building_type_481_collected_data
subtract = { value = var:aroai_building_type_481_collected_data floor = yes } multiply = 100 }
aroai_building_type_481_collected_data_2 = { value = var:aroai_building_type_481_collected_data
subtract = { value = var:aroai_building_type_481_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_481_collected_data_3 = { value = var:aroai_building_type_481_collected_data
subtract = { value = var:aroai_building_type_481_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_481_collected_data_4 = { value = var:aroai_building_type_481_collected_data
subtract = { value = var:aroai_building_type_481_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_481_collected_data_5 = { value = var:aroai_building_type_481_collected_data
divide = 10000000 floor = yes }
aroai_building_type_481_collected_data_average_of_1_and_2 = { value = aroai_building_type_481_collected_data_1
add = aroai_building_type_481_collected_data_2 divide = 2 floor = yes }
aroai_building_type_482_collected_data_1 = { value = var:aroai_building_type_482_collected_data
subtract = { value = var:aroai_building_type_482_collected_data floor = yes } multiply = 100 }
aroai_building_type_482_collected_data_2 = { value = var:aroai_building_type_482_collected_data
subtract = { value = var:aroai_building_type_482_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_482_collected_data_3 = { value = var:aroai_building_type_482_collected_data
subtract = { value = var:aroai_building_type_482_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_482_collected_data_4 = { value = var:aroai_building_type_482_collected_data
subtract = { value = var:aroai_building_type_482_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_482_collected_data_5 = { value = var:aroai_building_type_482_collected_data
divide = 10000000 floor = yes }
aroai_building_type_482_collected_data_average_of_1_and_2 = { value = aroai_building_type_482_collected_data_1
add = aroai_building_type_482_collected_data_2 divide = 2 floor = yes }
aroai_building_type_483_collected_data_1 = { value = var:aroai_building_type_483_collected_data
subtract = { value = var:aroai_building_type_483_collected_data floor = yes } multiply = 100 }
aroai_building_type_483_collected_data_2 = { value = var:aroai_building_type_483_collected_data
subtract = { value = var:aroai_building_type_483_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_483_collected_data_3 = { value = var:aroai_building_type_483_collected_data
subtract = { value = var:aroai_building_type_483_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_483_collected_data_4 = { value = var:aroai_building_type_483_collected_data
subtract = { value = var:aroai_building_type_483_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_483_collected_data_5 = { value = var:aroai_building_type_483_collected_data
divide = 10000000 floor = yes }
aroai_building_type_483_collected_data_average_of_1_and_2 = { value = aroai_building_type_483_collected_data_1
add = aroai_building_type_483_collected_data_2 divide = 2 floor = yes }
aroai_building_type_484_collected_data_1 = { value = var:aroai_building_type_484_collected_data
subtract = { value = var:aroai_building_type_484_collected_data floor = yes } multiply = 100 }
aroai_building_type_484_collected_data_2 = { value = var:aroai_building_type_484_collected_data
subtract = { value = var:aroai_building_type_484_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_484_collected_data_3 = { value = var:aroai_building_type_484_collected_data
subtract = { value = var:aroai_building_type_484_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_484_collected_data_4 = { value = var:aroai_building_type_484_collected_data
subtract = { value = var:aroai_building_type_484_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_484_collected_data_5 = { value = var:aroai_building_type_484_collected_data
divide = 10000000 floor = yes }
aroai_building_type_484_collected_data_average_of_1_and_2 = { value = aroai_building_type_484_collected_data_1
add = aroai_building_type_484_collected_data_2 divide = 2 floor = yes }
aroai_building_type_485_collected_data_1 = { value = var:aroai_building_type_485_collected_data
subtract = { value = var:aroai_building_type_485_collected_data floor = yes } multiply = 100 }
aroai_building_type_485_collected_data_2 = { value = var:aroai_building_type_485_collected_data
subtract = { value = var:aroai_building_type_485_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_485_collected_data_3 = { value = var:aroai_building_type_485_collected_data
subtract = { value = var:aroai_building_type_485_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_485_collected_data_4 = { value = var:aroai_building_type_485_collected_data
subtract = { value = var:aroai_building_type_485_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_485_collected_data_5 = { value = var:aroai_building_type_485_collected_data
divide = 10000000 floor = yes }
aroai_building_type_485_collected_data_average_of_1_and_2 = { value = aroai_building_type_485_collected_data_1
add = aroai_building_type_485_collected_data_2 divide = 2 floor = yes }
aroai_building_type_486_collected_data_1 = { value = var:aroai_building_type_486_collected_data
subtract = { value = var:aroai_building_type_486_collected_data floor = yes } multiply = 100 }
aroai_building_type_486_collected_data_2 = { value = var:aroai_building_type_486_collected_data
subtract = { value = var:aroai_building_type_486_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_486_collected_data_3 = { value = var:aroai_building_type_486_collected_data
subtract = { value = var:aroai_building_type_486_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_486_collected_data_4 = { value = var:aroai_building_type_486_collected_data
subtract = { value = var:aroai_building_type_486_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_486_collected_data_5 = { value = var:aroai_building_type_486_collected_data
divide = 10000000 floor = yes }
aroai_building_type_486_collected_data_average_of_1_and_2 = { value = aroai_building_type_486_collected_data_1
add = aroai_building_type_486_collected_data_2 divide = 2 floor = yes }
aroai_building_type_487_collected_data_1 = { value = var:aroai_building_type_487_collected_data
subtract = { value = var:aroai_building_type_487_collected_data floor = yes } multiply = 100 }
aroai_building_type_487_collected_data_2 = { value = var:aroai_building_type_487_collected_data
subtract = { value = var:aroai_building_type_487_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_487_collected_data_3 = { value = var:aroai_building_type_487_collected_data
subtract = { value = var:aroai_building_type_487_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_487_collected_data_4 = { value = var:aroai_building_type_487_collected_data
subtract = { value = var:aroai_building_type_487_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_487_collected_data_5 = { value = var:aroai_building_type_487_collected_data
divide = 10000000 floor = yes }
aroai_building_type_487_collected_data_average_of_1_and_2 = { value = aroai_building_type_487_collected_data_1
add = aroai_building_type_487_collected_data_2 divide = 2 floor = yes }
aroai_building_type_488_collected_data_1 = { value = var:aroai_building_type_488_collected_data
subtract = { value = var:aroai_building_type_488_collected_data floor = yes } multiply = 100 }
aroai_building_type_488_collected_data_2 = { value = var:aroai_building_type_488_collected_data
subtract = { value = var:aroai_building_type_488_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_488_collected_data_3 = { value = var:aroai_building_type_488_collected_data
subtract = { value = var:aroai_building_type_488_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_488_collected_data_4 = { value = var:aroai_building_type_488_collected_data
subtract = { value = var:aroai_building_type_488_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_488_collected_data_5 = { value = var:aroai_building_type_488_collected_data
divide = 10000000 floor = yes }
aroai_building_type_488_collected_data_average_of_1_and_2 = { value = aroai_building_type_488_collected_data_1
add = aroai_building_type_488_collected_data_2 divide = 2 floor = yes }
aroai_building_type_489_collected_data_1 = { value = var:aroai_building_type_489_collected_data
subtract = { value = var:aroai_building_type_489_collected_data floor = yes } multiply = 100 }
aroai_building_type_489_collected_data_2 = { value = var:aroai_building_type_489_collected_data
subtract = { value = var:aroai_building_type_489_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_489_collected_data_3 = { value = var:aroai_building_type_489_collected_data
subtract = { value = var:aroai_building_type_489_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_489_collected_data_4 = { value = var:aroai_building_type_489_collected_data
subtract = { value = var:aroai_building_type_489_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_489_collected_data_5 = { value = var:aroai_building_type_489_collected_data
divide = 10000000 floor = yes }
aroai_building_type_489_collected_data_average_of_1_and_2 = { value = aroai_building_type_489_collected_data_1
add = aroai_building_type_489_collected_data_2 divide = 2 floor = yes }
aroai_building_type_490_collected_data_1 = { value = var:aroai_building_type_490_collected_data
subtract = { value = var:aroai_building_type_490_collected_data floor = yes } multiply = 100 }
aroai_building_type_490_collected_data_2 = { value = var:aroai_building_type_490_collected_data
subtract = { value = var:aroai_building_type_490_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_490_collected_data_3 = { value = var:aroai_building_type_490_collected_data
subtract = { value = var:aroai_building_type_490_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_490_collected_data_4 = { value = var:aroai_building_type_490_collected_data
subtract = { value = var:aroai_building_type_490_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_490_collected_data_5 = { value = var:aroai_building_type_490_collected_data
divide = 10000000 floor = yes }
aroai_building_type_490_collected_data_average_of_1_and_2 = { value = aroai_building_type_490_collected_data_1
add = aroai_building_type_490_collected_data_2 divide = 2 floor = yes }
aroai_building_type_491_collected_data_1 = { value = var:aroai_building_type_491_collected_data
subtract = { value = var:aroai_building_type_491_collected_data floor = yes } multiply = 100 }
aroai_building_type_491_collected_data_2 = { value = var:aroai_building_type_491_collected_data
subtract = { value = var:aroai_building_type_491_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_491_collected_data_3 = { value = var:aroai_building_type_491_collected_data
subtract = { value = var:aroai_building_type_491_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_491_collected_data_4 = { value = var:aroai_building_type_491_collected_data
subtract = { value = var:aroai_building_type_491_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_491_collected_data_5 = { value = var:aroai_building_type_491_collected_data
divide = 10000000 floor = yes }
aroai_building_type_491_collected_data_average_of_1_and_2 = { value = aroai_building_type_491_collected_data_1
add = aroai_building_type_491_collected_data_2 divide = 2 floor = yes }
aroai_building_type_492_collected_data_1 = { value = var:aroai_building_type_492_collected_data
subtract = { value = var:aroai_building_type_492_collected_data floor = yes } multiply = 100 }
aroai_building_type_492_collected_data_2 = { value = var:aroai_building_type_492_collected_data
subtract = { value = var:aroai_building_type_492_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_492_collected_data_3 = { value = var:aroai_building_type_492_collected_data
subtract = { value = var:aroai_building_type_492_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_492_collected_data_4 = { value = var:aroai_building_type_492_collected_data
subtract = { value = var:aroai_building_type_492_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_492_collected_data_5 = { value = var:aroai_building_type_492_collected_data
divide = 10000000 floor = yes }
aroai_building_type_492_collected_data_average_of_1_and_2 = { value = aroai_building_type_492_collected_data_1
add = aroai_building_type_492_collected_data_2 divide = 2 floor = yes }
aroai_building_type_493_collected_data_1 = { value = var:aroai_building_type_493_collected_data
subtract = { value = var:aroai_building_type_493_collected_data floor = yes } multiply = 100 }
aroai_building_type_493_collected_data_2 = { value = var:aroai_building_type_493_collected_data
subtract = { value = var:aroai_building_type_493_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_493_collected_data_3 = { value = var:aroai_building_type_493_collected_data
subtract = { value = var:aroai_building_type_493_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_493_collected_data_4 = { value = var:aroai_building_type_493_collected_data
subtract = { value = var:aroai_building_type_493_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_493_collected_data_5 = { value = var:aroai_building_type_493_collected_data
divide = 10000000 floor = yes }
aroai_building_type_493_collected_data_average_of_1_and_2 = { value = aroai_building_type_493_collected_data_1
add = aroai_building_type_493_collected_data_2 divide = 2 floor = yes }
aroai_building_type_494_collected_data_1 = { value = var:aroai_building_type_494_collected_data
subtract = { value = var:aroai_building_type_494_collected_data floor = yes } multiply = 100 }
aroai_building_type_494_collected_data_2 = { value = var:aroai_building_type_494_collected_data
subtract = { value = var:aroai_building_type_494_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_494_collected_data_3 = { value = var:aroai_building_type_494_collected_data
subtract = { value = var:aroai_building_type_494_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_494_collected_data_4 = { value = var:aroai_building_type_494_collected_data
subtract = { value = var:aroai_building_type_494_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_494_collected_data_5 = { value = var:aroai_building_type_494_collected_data
divide = 10000000 floor = yes }
aroai_building_type_494_collected_data_average_of_1_and_2 = { value = aroai_building_type_494_collected_data_1
add = aroai_building_type_494_collected_data_2 divide = 2 floor = yes }
aroai_building_type_495_collected_data_1 = { value = var:aroai_building_type_495_collected_data
subtract = { value = var:aroai_building_type_495_collected_data floor = yes } multiply = 100 }
aroai_building_type_495_collected_data_2 = { value = var:aroai_building_type_495_collected_data
subtract = { value = var:aroai_building_type_495_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_495_collected_data_3 = { value = var:aroai_building_type_495_collected_data
subtract = { value = var:aroai_building_type_495_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_495_collected_data_4 = { value = var:aroai_building_type_495_collected_data
subtract = { value = var:aroai_building_type_495_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_495_collected_data_5 = { value = var:aroai_building_type_495_collected_data
divide = 10000000 floor = yes }
aroai_building_type_495_collected_data_average_of_1_and_2 = { value = aroai_building_type_495_collected_data_1
add = aroai_building_type_495_collected_data_2 divide = 2 floor = yes }
aroai_building_type_496_collected_data_1 = { value = var:aroai_building_type_496_collected_data
subtract = { value = var:aroai_building_type_496_collected_data floor = yes } multiply = 100 }
aroai_building_type_496_collected_data_2 = { value = var:aroai_building_type_496_collected_data
subtract = { value = var:aroai_building_type_496_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_496_collected_data_3 = { value = var:aroai_building_type_496_collected_data
subtract = { value = var:aroai_building_type_496_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_496_collected_data_4 = { value = var:aroai_building_type_496_collected_data
subtract = { value = var:aroai_building_type_496_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_496_collected_data_5 = { value = var:aroai_building_type_496_collected_data
divide = 10000000 floor = yes }
aroai_building_type_496_collected_data_average_of_1_and_2 = { value = aroai_building_type_496_collected_data_1
add = aroai_building_type_496_collected_data_2 divide = 2 floor = yes }
aroai_building_type_497_collected_data_1 = { value = var:aroai_building_type_497_collected_data
subtract = { value = var:aroai_building_type_497_collected_data floor = yes } multiply = 100 }
aroai_building_type_497_collected_data_2 = { value = var:aroai_building_type_497_collected_data
subtract = { value = var:aroai_building_type_497_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_497_collected_data_3 = { value = var:aroai_building_type_497_collected_data
subtract = { value = var:aroai_building_type_497_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_497_collected_data_4 = { value = var:aroai_building_type_497_collected_data
subtract = { value = var:aroai_building_type_497_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_497_collected_data_5 = { value = var:aroai_building_type_497_collected_data
divide = 10000000 floor = yes }
aroai_building_type_497_collected_data_average_of_1_and_2 = { value = aroai_building_type_497_collected_data_1
add = aroai_building_type_497_collected_data_2 divide = 2 floor = yes }
aroai_building_type_498_collected_data_1 = { value = var:aroai_building_type_498_collected_data
subtract = { value = var:aroai_building_type_498_collected_data floor = yes } multiply = 100 }
aroai_building_type_498_collected_data_2 = { value = var:aroai_building_type_498_collected_data
subtract = { value = var:aroai_building_type_498_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_498_collected_data_3 = { value = var:aroai_building_type_498_collected_data
subtract = { value = var:aroai_building_type_498_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_498_collected_data_4 = { value = var:aroai_building_type_498_collected_data
subtract = { value = var:aroai_building_type_498_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_498_collected_data_5 = { value = var:aroai_building_type_498_collected_data
divide = 10000000 floor = yes }
aroai_building_type_498_collected_data_average_of_1_and_2 = { value = aroai_building_type_498_collected_data_1
add = aroai_building_type_498_collected_data_2 divide = 2 floor = yes }
aroai_building_type_499_collected_data_1 = { value = var:aroai_building_type_499_collected_data
subtract = { value = var:aroai_building_type_499_collected_data floor = yes } multiply = 100 }
aroai_building_type_499_collected_data_2 = { value = var:aroai_building_type_499_collected_data
subtract = { value = var:aroai_building_type_499_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_499_collected_data_3 = { value = var:aroai_building_type_499_collected_data
subtract = { value = var:aroai_building_type_499_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_499_collected_data_4 = { value = var:aroai_building_type_499_collected_data
subtract = { value = var:aroai_building_type_499_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_499_collected_data_5 = { value = var:aroai_building_type_499_collected_data
divide = 10000000 floor = yes }
aroai_building_type_499_collected_data_average_of_1_and_2 = { value = aroai_building_type_499_collected_data_1
add = aroai_building_type_499_collected_data_2 divide = 2 floor = yes }
aroai_building_type_500_collected_data_1 = { value = var:aroai_building_type_500_collected_data
subtract = { value = var:aroai_building_type_500_collected_data floor = yes } multiply = 100 }
aroai_building_type_500_collected_data_2 = { value = var:aroai_building_type_500_collected_data
subtract = { value = var:aroai_building_type_500_collected_data divide = 100 floor = yes multiply = 100 } floor = yes }
aroai_building_type_500_collected_data_3 = { value = var:aroai_building_type_500_collected_data
subtract = { value = var:aroai_building_type_500_collected_data divide = 1000000 floor = yes multiply = 1000000 }
divide = 100 floor = yes }
aroai_building_type_500_collected_data_4 = { value = var:aroai_building_type_500_collected_data
subtract = { value = var:aroai_building_type_500_collected_data divide = 10000000 floor = yes multiply = 10000000 }
divide = 1000000 floor = yes }
aroai_building_type_500_collected_data_5 = { value = var:aroai_building_type_500_collected_data
divide = 10000000 floor = yes }
aroai_building_type_500_collected_data_average_of_1_and_2 = { value = aroai_building_type_500_collected_data_1
add = aroai_building_type_500_collected_data_2 divide = 2 floor = yes }